Creating
7Takes a set of functions and returns a fn that is the composition of those fns. The returned fn takes a variable numb...
functionclojure.core
Returns a function that takes any number of arguments and returns x.
functionclojure.core
Same as (def name (fn [params* ] exprs*)) or (def name (fn ([params* ] exprs*)+)) with any doc-string or attrs added...
macroclojure.core
same as defn, yielding non-public def
macroclojure.core
params => positional-params*, or positional-params* & rest-param positional-param => binding-form rest-param => bind...
macroclojure.core
Returns its argument.
functionclojure.core
Takes a function f and fewer than the normal arguments to f, and returns a fn that takes a variable number of addition...
functionclojure.core