(add* x & [y])
Returns the sum of given nums.
Returns the sum of given nums.
(concatenate* x y)
Concatenate two strings.
Concatenate two strings.
(div* x y)
Returns numerator divided by the denominator
Returns numerator divided by the denominator
(eq* x y)
Returns true if objects are equal, otherwise false.
Returns true if objects are equal, otherwise false.
(less* x y)
Returns non-nil if nums are in monotonically increasing order, otherwise false.
Returns non-nil if nums are in monotonically increasing order, otherwise false.
(less-or-eq* x y)
Returns non-nil if nums are in monotonically non-decreasing order, otherwise false.
Returns non-nil if nums are in monotonically non-decreasing order, otherwise false.
(more* x y)
Returns non-nil if nums are in monotonically decreasing order, otherwise false.
Returns non-nil if nums are in monotonically decreasing order, otherwise false.
(more-or-eq* x y)
Returns non-nil if nums are in monotonically non-increasing order, otherwise false.
Returns non-nil if nums are in monotonically non-increasing order, otherwise false.
(negate* x)
Returns true if x is logical false, false otherwise.
Returns true if x is logical false, false otherwise.
(not-eq* x y)
Returns true if object are not equal, otherwise false.
Returns true if object are not equal, otherwise false.
(percent* x)
Calculate product of given number and 0.01
Calculate product of given number and 0.01
(pow* x y)
Returns the value of the first argument raised to the power of the second argument.
Returns the value of the first argument raised to the power of the second argument.
(range** x y)
Returns a collection of integers starting from x and end at y (exclusive)
Returns a collection of integers starting from x and end at y (exclusive)
(sub* x & [y])
If no ys are supplied, returns the negation of x, else subtracts the y from x and returns the result.
If no ys are supplied, returns the negation of x, else subtracts the y from x and returns the result.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close