Conditionals
8Takes an expression, and a set of clauses. Each clause can take the form of either: test-constant result-expr (...
macroclojure.core
Takes a set of test/expr pairs. It evaluates each test one at a time. If a test returns logical true, cond evaluates ...
macroclojure.core
Takes a binary predicate, an expression, and a set of clauses. Each clause can take the form of either: test-expr r...
macroclojure.core
Evaluates test, then consequent or alternative.
special-formclojure.core
bindings => binding-form test If test is true, evaluates then with binding-form bound to the value of test, if not...
macroclojure.core
Evaluates test. If logical true, evaluates body in an implicit do.
macroclojure.core
bindings => binding-form test When test is true, evaluates body with binding-form bound to the value of test
macroclojure.core
Evaluates test. If logical false, evaluates body in an implicit do.
macroclojure.core