1 to 6 of 6 results. prev page | next page
bindings => binding-form test When test is not nil, evaluates body with binding-form bound to the value of test
bindings => x xs Roughly the same as (when (seq xs) (let [x (first xs)] body)) but xs is evaluated only once
bindings => binding-form test When test is true, evaluates body with binding-form bound to the value of test
Evaluates test. If logical false, evaluates body in an implicit do.
Evaluates test. If logical true, evaluates body in an implicit do.
Returns a transducer that ends transduction when pred returns true for an input. When retf is supplied it must be a fn of 2 arguments - it will be passed the (completed) result so far and the input that triggered the predicate, and its return value (if it does not throw an exception) will be...