chickadee » scheme » base » vector-append

vector-append vector ....procedure

Returns a newly allocated vector whose elements are the concatenation of the elements of the given vectors.

(vector-append #(a b c) #(d e f)) ==> #(a b c d e f)