(* & args)
(+ & args)
(- & args)
(/ & args)
generic exp.
Returns the base-e exponential of x
. Equivalent to (expt e x)
, given
some properly-defined e
symbol.
generic exp. Returns the base-e exponential of `x`. Equivalent to `(expt e x)`, given some properly-defined `e` symbol.
generic exp10.
Returns the base-10 exponential of x
. Equivalent to (expt 10 x)
.
generic exp10. Returns the base-10 exponential of `x`. Equivalent to `(expt 10 x)`.
generic exp2.
Returns the base-2 exponential of x
. Equivalent to (expt 2 x)
.
generic exp2. Returns the base-2 exponential of `x`. Equivalent to `(expt 2 x)`.
(factorial n)
Returns
the factorial of n
, ie, the product of 1 to n inclusive.
Returns the factorial of `n`, ie, the product of 1 to n inclusive.
generic log.
Returns the natural logarithm of x
.
generic log. Returns the natural logarithm of `x`.
generic log10.
Returns the base-10 logarithm of x
, ie, $log_10(x)$.
generic log10. Returns the base-10 logarithm of `x`, ie, $log_10(x)$.
generic log2.
Returns the base-2 logarithm of x
, ie, $log_2(x)$.
generic log2. Returns the base-2 logarithm of `x`, ie, $log_2(x)$.
generic negative?.
Returns true if the argument a
is less than (v/zero-like a), false otherwise. The default implementation depends on a proper Comparable implementation on the type.
generic negative?. Returns true if the argument `a` is less than `(v/zero-like a), false otherwise. The default implementation depends on a proper Comparable implementation on the type.`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close