chickadee » ck-macros » c-true

(c-true X ...) → '#tsyntax

Always yields '#t, regardless of its arguments. May be useful for some higher-order macros. Equivalent to (c-constantly '#t X ...). Added in version 0.2.0.

;;; Recursively check if two structure have the same length,
;;; nesting, etc, while ignoring the value of the atoms.
(ck () (c-compare? '(c-true) '(1 #(2) 3) '(a #(b) c)))
;; ==> '#t