Skip to content

Instantly share code, notes, and snippets.

@ifesdjeen
Created May 1, 2013 20:16
Show Gist options
  • Save ifesdjeen/5498025 to your computer and use it in GitHub Desktop.
Save ifesdjeen/5498025 to your computer and use it in GitHub Desktop.
Apply to values (into hash)
(defn- apply-to-values [m f]
"Applies function f to all values in map m"
(into {} (for [[k v] m]
[k (f v)])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment