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