user=> (map? {:a 1 :b 2 :c 3}) true user=> (map? '(1 2 3)) false
(def ^{:arglists '([x]) :doc "Return true if x implements IPersistentMap" :added "1.0" :static true} map? (fn ^:static map? [x] (instance? clojure.lang.IPersistentMap x)))
Comments top
No comments for map?. Log in to add a comment.