Skip to content

Instantly share code, notes, and snippets.

@graue
Created January 12, 2014 06:30
Show Gist options
  • Save graue/8381673 to your computer and use it in GitHub Desktop.
Save graue/8381673 to your computer and use it in GitHub Desktop.
(defn val-map
"Map f over hashmap m's values. Should be in the dang core."
[f 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