user=> (map key {:a 1 :b 2}) (:a :b)
Returns a sequence of the map's keys.
(defn key "Returns the key of the map entry." {:added "1.0" :static true} [^java.util.Map$Entry e] (. e (getKey)))
Comments top
No comments for key. Log in to add a comment.