Skip to content

Instantly share code, notes, and snippets.

@AdamClements
Last active December 24, 2015 14:29
Show Gist options
  • Save AdamClements/6813235 to your computer and use it in GitHub Desktop.
Save AdamClements/6813235 to your computer and use it in GitHub Desktop.
TestGist
(defn map-vals "Map from a thing to a thing"
[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