hash-map-lite

functionsince v1.12.134Edit
(hash-map-lite & keyvals)

Source docstring:
:lite-mode version of hash-map, not intended to be used directly.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn hash-map-lite
  [& keyvals]
  (loop [in (seq keyvals), out (. HashMapLite -EMPTY)]
    (if in
      (recur (nnext in) (-assoc out (first in) (second in)))
      out)))