chickadee » anaphora » nif

(nif name test consequent alternative ..)syntax

Named version of if.

Binds the result of test to the symbol name, which can than be used in the consequent or the mandatory anternative.

(nif it (memv 3 '(1 2 3 4 5)) it #f)