Liking cljdoc? Tell your friends :D
All platforms.

io.jesi.backpack.compare

Comparison operators based on compare

Comparison operators based on `compare`
raw docstring

<clj/s

(<)
(< x)
(< x y)
(< x y & more)

Returns true if the compared values are in increasing order (<)

Returns `true` if the `compare`d values are in increasing order (<)
sourceraw docstring

<=clj/s

(<=)
(<= x)
(<= x y)
(<= x y & more)

Returns true if the compared values are in non-decreasing order (<=)

Returns `true` if the `compare`d values are in non-decreasing order (<=)
sourceraw docstring

=clj/s

(=)
(= x)
(= x y)
(= x y & more)

Returns true if the compared values are equal (=)

Returns `true` if the `compare`d values are equal (=)
sourceraw docstring

>clj/s

(>)
(> x)
(> x y)
(> x y & more)

Returns true if the compared values are in decreasing order (>)

Returns `true` if the `compare`d values are in decreasing order (>)
sourceraw docstring

>=clj/s

(>=)
(>= x)
(>= x y)
(>= x y & more)

Returns true if the compared values are in non-increasing order (>=)

Returns `true` if the `compare`d values are in non-increasing order (>=)
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close