chickadee » srfi-133 » vector-append

vector-append vec ...procedure

[R7RS-small] 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))