Bindable java.time.Clock reference mainly for testing purposes.
Bindable [java.time.Clock](https://docs.oracle.com/javase/8/docs/api/java/time/Clock.html) reference mainly for testing purposes.
(lookup-calver part)
CalVer pattern lookup, wherein the part
is normalized to lowercase to support both
semantically correct patterns and Clojure's keyword idioms.
[CalVer](https://calver.org/) pattern lookup, wherein the `part` is normalized to lowercase to support both semantically correct patterns and Clojure's keyword idioms.
(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