<=

added
1.0

ns
clojure.core

type
function

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

Returns non-nil if nums are in monotonically non-decreasing order,
otherwise false.

                user=> (<= 1 2)
true
user=> (<= 2 2)
true
user=> (<= 3 2)
false
user=> (<= 2 3 4 5 6)
true