- (vector-append-subvectors [vec start end] ...)procedure
Returns a vector that contains every element of each vec from start to end in the specified order. This procedure is a generalization of vector-append.
Example:
(vector-append-subvectors '#(a b c d e) 0 2 '#(f g h i j) 2 4) ;=> #(a b h i)