Skip to content

Instantly share code, notes, and snippets.

@KirinDave
Created February 21, 2014 00:32
Show Gist options
  • Save KirinDave/9126477 to your computer and use it in GitHub Desktop.
Save KirinDave/9126477 to your computer and use it in GitHub Desktop.
I just wrote this today for building json structures out of destructured arguments.
(defn assoc-if
"Can someone explain to me how this is not in the stdlib?"
([h key value xformer]
(if-not (nil? value)
(assoc h key (xformer value))
h))
([h key value] (assoc-if h key value identity)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment