(>= x)
(>= x y)
(>= x y & more)
Returns non-nil if nums are in monotonically non-increasing order,
otherwise false.
Source
(defn
>=
"Returns non-nil if nums are in monotonically non-increasing order,\n otherwise false."
([x] true)
([x y] (cljs.core/>= x y))
([x y & more]
(if
(cljs.core/>= x y)
(if
(next more)
(recur y (first more) (next more))
(cljs.core/>= y (first more)))
false)))