(< x) (< x y) (< x y & more)
Returns non-nil if nums are in monotonically increasing order, otherwise false.
user=> (< 1 2) true user=> (< 2 1) false user=> (< 1.5 2) true user=> (< 2 3 4 5 6) true