- (c-vector-append V ...) → vectorsyntax
Appends the given vectors. Analogous to vector-append from SRFI 43, but only accepts two vectors.
(ck () (c-quote (c-vector-append))) ;; ==> '#() (ck () (c-quote (c-vector-append '#(a b) '#(c d) '#(e f)))) ;; ==> '#(a b c d e f)