- vector-concatenate list-of-vectorsprocedure
Appends each vector in list-of-vectors. This is equivalent to:
(apply vector-append list-of-vectors)
However, it may be implemented better.
Example:
(vector-concatenate '(#(a b) #(c d))) ;=> #(a b c d)
Appends each vector in list-of-vectors. This is equivalent to:
(apply vector-append list-of-vectors)
However, it may be implemented better.
Example:
(vector-concatenate '(#(a b) #(c d))) ;=> #(a b c d)