Comparison operators based on compare
Comparison operators based on `compare`
(<)
(< x)
(< x y)
(< x y & more)
Returns true
if the compare
d values are in increasing order (<)
Returns `true` if the `compare`d values are in increasing order (<)
(<=)
(<= x)
(<= x y)
(<= x y & more)
Returns true
if the compare
d values are in non-decreasing order (<=)
Returns `true` if the `compare`d values are in non-decreasing order (<=)
(=)
(= x)
(= x y)
(= x y & more)
Returns true
if the compare
d values are equal (=)
Returns `true` if the `compare`d values are equal (=)
(>)
(> x)
(> x y)
(> x y & more)
Returns true
if the compare
d values are in decreasing order (>)
Returns `true` if the `compare`d values are in decreasing order (>)
(>=)
(>= x)
(>= x y)
(>= x y & more)
Returns true
if the compare
d values are in non-increasing order (>=)
Returns `true` if the `compare`d values are in non-increasing order (>=)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close