function | since v0.0-2120 | clojure.core/sorted? | Edit |
(sorted? x)
Returns true if coll
implements the ISorted
protocol, false otherwise.
Sorted maps and sorted sets implement ISorted
.
Returns true if coll satisfies ISorted
(defn sorted?
[x] (satisfies? ISorted x))