chickadee » vector-lib » vector-reverse-copy

vector-reverse-copy vec #!optional start endprocedure

Like vector-copy, but it copies the elements in the reverse order from vec.

Example:

(vector-reverse-copy '#(5 4 3 2 1 0) 1 5)
  ;=> #(1 2 3 4)