Next: vectors replicate, Previous: vectors filter, Up: vectors [Index]
Return a newly allocated list of the items that make up the given
subvector. This is an extension of the vector->list
function
that adds support for subvectors.
Like %vector->list*
but reverses the order of the items from the
subvector.
Reverse the given list of items, then compose a vector with the result.
(reverse-list->vector '(#\a #\B #\c)) ⇒ #(#\c #\B #\a)