Conditionals
8Takes an expression, and a set of clauses. Each clause can take the form of either: test-constant result-expr (test-c...
macrocljs.core
Takes a set of test/expr pairs. It evaluates each test one at a time. If a test returns logical true, cond evaluates an...
macrocljs.core
Takes a binary predicate, an expression, and a set of clauses. Each clause can take the form of either: test-expr resul...
macrocljs.core
Evaluates test. If not the singular values nil or false, evaluates and yields then, otherwise, evaluates and yields else...
special-formcljs.core
bindings => binding-form test If test is true, evaluates then with binding-form bound to the value of test, if not, yi...
macrocljs.core
Evaluates test. If logical true, evaluates body in an implicit do.
macrocljs.core
bindings => binding-form test When test is true, evaluates body with binding-form bound to the value of test
macrocljs.core
Evaluates test. If logical false, evaluates body in an implicit do.
macrocljs.core