chickadee » ck-macros » c-vector-prefix

(c-vector-prefix V X ...) → listsyntax

Yields the given vector with the extra arguments added to the front. Added in version 0.3.0.

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