Returns non-nil if nums are in monotonically decreasing order, otherwise false.
user=> (> 1 2) false user=> (> 2 1) true user=> (> 2 2) false user=> (> 6 5 4 3 2) true user=> (sort > (vals {:foo 5, :bar 2, :baz 10})) (10 5 2)
Equality. Returns true if x equals y, false if not. Same as Java x.equals(y) except it also works ...
Same as (not (= obj1 obj2))
Returns non-nil if nums are in monotonically increasing order, otherwise false.
>