Comparison operators based on compare
Comparison operators based on `compare`
(<)(< 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 (<)
(<=)(<= 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 (<=)
(=)(= x)(= x y)(= x y & more)Returns true if the compared values are equal (=)
Returns `true` if the `compare`d values are equal (=)
(>)(> 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 (>)
(>=)(>= 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 (>=)
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |