Created
February 21, 2014 00:32
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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