io.jesi.backpack.compare

Comparison operators based on compare

<

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

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

<=

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

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

=

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

Returns true if the compared values are equal (=)

>

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

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

>=

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

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