(lookup-gen part)
Generates a dynamic value for supported lookup parts
.
Generates a dynamic value for supported lookup `parts`.
(map->nsmap m n)
Namespaces all non-namespaced keys in the given map.
(map->nsmap {:a 1 :b 2 :c/d 3} "x")
=> {:x/a 1, :x/b 2, :c/d 3}
Originally from StackOverflow Q#44523 A#43722784
Namespaces all non-namespaced keys in the given map. ```clojure (map->nsmap {:a 1 :b 2 :c/d 3} "x") => {:x/a 1, :x/b 2, :c/d 3} ``` Originally from [StackOverflow Q#44523 A#43722784](https://stackoverflow.com/a/43722784/44523)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close