Skip to content

Instantly share code, notes, and snippets.

@rik0
Created February 13, 2011 14:37
Show Gist options
  • Save rik0/824724 to your computer and use it in GitHub Desktop.
Save rik0/824724 to your computer and use it in GitHub Desktop.
(defmacro unpack-parameters [params keys defaults & body]
`(let [{:keys ~keys :or ~defaults}
(apply hash-map (interleave (map keyword '~keys) ~params))]
~@body))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment