- (c-apply '(OP ...) X ... '(Y ...)) → resultsyntax
Like c-call, but the last argument is a list of more arguments. Prior to version 0.2.0, the arguments in the final list required an extra level of quoting. Analogous to apply.
(ck () (c-quote (c-apply '(c-list) 'a '(b) '(c d)))) ;; ==> '(a (b) c d)