sorted?

functionsince v0.0-2120 clojure.core/sorted?Edit
(sorted? x)

Details:

Returns true if coll implements the ISorted protocol, false otherwise.

Sorted maps and sorted sets implement ISorted.


See Also:


Source docstring:
Returns true if coll satisfies ISorted
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn sorted?
  [x] (satisfies? ISorted x))