Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created October 21, 2012 06:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjack/05dce1cde5045996d8dc to your computer and use it in GitHub Desktop.
Save tomjack/05dce1cde5045996d8dc to your computer and use it in GitHub Desktop.
(defn maybe-map [& keyvals]
(->> keyvals
(partition 2)
(reduce (fn [map [k v]]
(if v
(assoc map k v)
map))
{})))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment