vector-append -- r7rs Definition procedure;
vector-append (from vonuvoli);Procedure variants:
(() -> (vector-empty))
vector-empty;((vector |1...|) -> (vector))
scheme:base -- (scheme base);scheme -- (scheme);(vector-append vector ...)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)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.