chickadee » ck-macros » c-vector-suffix

(c-vector-suffix V X ...) → vectorsyntax

Yields the given vector with the extra arguments added to the end.

(ck () (c-quote (c-vector-suffix '#(a b) 'c 'd)))
;; ==> '#(a b c d)