keys

functionsince v0.0-927 clojure.core/keysEdit
(keys map)

Details:

Returns a sequence of the keys in hash-map.


See Also:


Source docstring:
Returns a sequence of the map's keys, in the same order as (seq map).
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn keys
  [map]
  (when-let [mseq (seq map)]
    (KeySeq. mseq nil)))