Created
April 4, 2014 19:15
-
-
Save verma/9981313 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 map-vals | |
"Maps the values of the map col using f" | |
[f col] | |
(into {} (map (fn [[a b]] [a (f b)]) col))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With for: