>=

added
1.0

ns
clojure.core

type
function

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

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

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