user> (set? #{1 2 3}) true user> (set? [1 2 3]) false user> (set? {:a 1 :b 2}) false
Returns a set of the distinct elements of coll.
(defn set? "Returns true if x implements IPersistentSet" {:added "1.0" :static true} [x] (instance? clojure.lang.IPersistentSet x))
Comments top
No comments for set?. Log in to add a comment.