diff options
Diffstat (limited to 'src/clojure/contrib/map_utils.clj')
-rw-r--r-- | src/clojure/contrib/map_utils.clj | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/clojure/contrib/map_utils.clj b/src/clojure/contrib/map_utils.clj index 3862fcee..4adf3068 100644 --- a/src/clojure/contrib/map_utils.clj +++ b/src/clojure/contrib/map_utils.clj @@ -13,7 +13,10 @@ ;; jason at w01fe dot com ;; Created 25 Feb 2009 -(ns clojure.contrib.map-utils) +(ns + #^{:author "Jason Wolfe, Chris Houser", + :doc "Utilities for operating on Clojure maps."} + clojure.contrib.map-utils) (defmacro lazy-get @@ -36,7 +39,7 @@ ; by Chouser: (defn deep-merge-with - "Like merge-with, but merges maps recursively, appling the given fn + "Like merge-with, but merges maps recursively, applying 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} |