Created
January 28, 2013 12:33
-
-
Save anonymous/4655172 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn fold-vec-maps-into-map [coll] | |
"Provided a reducer, concatenate into a vector. | |
Note: same as (into [] coll), but parallel." | |
(let [merge-fn (partial merge-with into)] | |
(r/fold (r/monoid merge-fn hash-map) merge-fn coll))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment