(capitalize-words s)
Capitalize every word in a string
Capitalize every word in a string
(clj-kvar var-name)
Given a namespaced keyword, look up the corresponding var in clj compilation or return a keyword in cljs compilation.
Given a namespaced keyword, look up the corresponding var in clj compilation or return a keyword in cljs compilation.
(deep-merge db m)
Like merge, but merges maps recursively
Like merge, but merges maps recursively
(deep-merge-with f & maps)
Like merge-with, but merges maps recursively, applying the given fn only when there's a non-map at a particular level. (deep-merge-with + {: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, applying the given fn only when there's a non-map at a particular level. (deep-merge-with + {: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}
(flatv & args)
(full-name k)
full string representation of a keyword: :x/y => "x/y" :y => "y"
full string representation of a keyword: :x/y => "x/y" :y => "y"
(kebab s)
Replace non-alphanumeric characters with hyphens
Replace non-alphanumeric characters with hyphens
(key-by k xs)
(kw-title kw)
Turn a keyword into a capitalized string
Turn a keyword into a capitalized string
(move-keys m ks path)
if keys are present at top level, place them in a nested map
if keys are present at top level, place them in a nested map
(pluralize s n)
(projection? x y)
Is every value in x present in y?
Is every value in x present in y?
(set-toggle s val)
Toggle val
's membership in set s
Toggle `val`'s membership in set `s`
(slash name)
replace dots with slashes in namespace to create a string that's route-friendly
replace dots with slashes in namespace to create a string that's route-friendly
(slugify txt & [seg-count])
(toggle v x y)
(update-many-vals x update-map)
Takes a map to be updated, x, and a map of {[k1 k2 k3] update-fn-1 [k4 k5 k6] update-fn-2} such that such that k1, k2, k3 are updated using update-fn-1 and k4, k5, k6 are updated using update-fn-2
Takes a map to be updated, x, and a map of {[k1 k2 k3] update-fn-1 [k4 k5 k6] update-fn-2} such that such that k1, k2, k3 are updated using update-fn-1 and k4, k5, k6 are updated using update-fn-2
(vectorize maybe-sequential)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close