chickadee » ck-macros » c-xcons

(c-xcons X Y) → '(Y . X)syntax

Like c-cons, but exchanges the order of arguments. Analogous to xcons from SRFI 1. Added in version 0.2.0.

(ck () (c-quote (c-xcons 'a 'b)))
;; ==> '(b . a)