Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created April 27, 2013 07:53
Show Gist options
  • Save yuanmai/5472262 to your computer and use it in GitHub Desktop.
Save yuanmai/5472262 to your computer and use it in GitHub Desktop.
point free
(defn map-vals [f coll]
(into (empty coll) (map (juxt key (comp f val)) coll)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment