Functions
Takes 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
If coll is counted? returns its count, else will count at most the first n elements of coll using its seq
functioncljs.core
Returns an JavaScript compatible comparator based upon pred.
functioncljs.core
Same as (first (first x))
functioncljs.core
Same as (first (next x))
functioncljs.core
Creates a seqable/reducible via repeated calls to step, a function of some (continuation token) 'k'. The first call to s...
functioncljs.core
Returns the x for which (k x), a number, is greatest. If there are multiple such xs, the last one is returned.
functioncljs.core
Returns the x for which (k x), a number, is least. If there are multiple such xs, the last one is returned.
functioncljs.core
Same as (next (first x))
functioncljs.core
Same as (next (next x))
functioncljs.core
Applies fn f to the argument list formed by prepending intervening arguments to args.
functioncljs.core
Takes a set of functions and returns a fn that is the composition of those fns. The returned fn takes a variable number...
functioncljs.core
Takes a fn f and returns a fn that takes the same arguments as f, has the same effects, if any, and returns the opposite...
functioncljs.core
Takes a reducing function f of 2 args and returns a fn suitable for transduce by adding an arity-1 signature that calls ...
functioncljs.core
Takes a set of predicates and returns a function f that returns true if all of its composing predicates return a logical...
functioncljs.core
Takes a function f, and returns a function that calls f, replacing a nil first argument to f with the supplied value x. ...
functioncljs.core
Takes a set of functions and returns a fn that is the juxtaposition of those fns. The returned fn takes a variable numb...
functioncljs.core
Returns a memoized version of a referentially transparent function. The memoized version of the function keeps a cache o...
functioncljs.core
Takes a set of predicates and returns a function f that returns the first logical true value returned by one of its comp...
functioncljs.core
trampoline can be used to convert algorithms requiring mutual recursion without stack consumption. Calls f with supplied...
functioncljs.core
Threads the expr through the forms. Inserts x as the second item in the first form, making a list of it if it is not a l...
macrocljs.core
Threads the expr through the forms. Inserts x as the last item in the first form, making a list of it if it is not a lis...
macrocljs.core
Binds name to expr, evaluates the first form in the lexical context of that binding, then binds name to that result, rep...
macrocljs.core
Takes an expression and a set of test/form pairs. Threads expr (via ->) through each form for which the corresponding te...
macrocljs.core
Takes an expression and a set of test/form pairs. Threads expr (via ->>) through each form for which the corresponding t...
macrocljs.core
When expr is not nil, threads it into the first form (via ->), and when that result is not nil, through the next etc
macrocljs.core
When expr is not nil, threads it into the first form (via ->>), and when that result is not nil, through the next etc
macrocljs.core