user=> (sorted? (sorted-set 5 3 1 2 4)) true user=> (sorted? (sorted-map :a 1 :c 3 :b 2)) true ;; Note you can't just pass in a collection that happens to be sorted. user=> (sorted? [1 2 3 4 5]) false
(defn sorted?
"Returns true if coll implements Sorted"
{:added "1.0"
:static true}
[coll] (instance? clojure.lang.Sorted coll))
Comments top
No comments for sorted?. Log in to add a comment.