Liking cljdoc? Tell your friends :D

config.core


contains-in?clj

(contains-in? m k-path)

checks whether the nested key exists in a map

checks whether the nested key exists in a map
sourceraw docstring

deep-merge-withclj

(deep-merge-with f & maps)

Like merge-with, but merges maps recursively, appling the given fn only when there's a non-map at a particular level. (deepmerge + {:a {:b {:c 1 :d {:x 1 :y 2}} :e 3} :f 4} {:a {:b {:c 2 :d {:z 9} :z 3} :e 100}}) -> {:a {:b {:z 3, :c 3, :d {:z 9, :x 1, :y 2}}, :e 103}, :f 4}

Like merge-with, but merges maps recursively, appling the given fn
only when there's a non-map at a particular level.
(deepmerge + {:a {:b {:c 1 :d {:x 1 :y 2}} :e 3} :f 4}
             {:a {:b {:c 2 :d {:z 9} :z 3} :e 100}})
-> {:a {:b {:z 3, :c 3, :d {:z 9, :x 1, :y 2}}, :e 103}, :f 4}
sourceraw docstring

envclj

A map of environment variables.

A map of environment variables.
sourceraw docstring

load-envclj

(load-env & configs)

Generate a map of environment variables.

Generate a map of environment variables.
sourceraw docstring

merge-mapsclj

(merge-maps & m)
source

reload-envclj

(reload-env)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close