Next: Modifying Vectors, Previous: Selecting Vector Components, Up: Vectors [Contents][Index]
Returns a newly allocated vector that contains the elements of vector between index start (inclusive) and end (exclusive).
Equivalent to
(subvector vector 0 end)
Equivalent to
(subvector vector start (vector-length vector))