- vector-append vec ···procedure
Returns a newly allocated vector that contains all elements in order from the subsequent locations in vec ···.
Examples:
(vector-append '#(x) '#(y)) ;=> #(x y)
(vector-append '#(a) '#(b c d)) ;=> #(a b c d)
(vector-append '#(a #(b)) '#(#(c))) ;=> #(a #(b) #(c))