So I'm finding myself writing macros that look like this
(defmacro set-from-map [objform valmapform & set-pairs]
(let [obj (gensym)
valmap (gensym)]
`(let [~obj ~objform
~valmap ~valmapform]
(other stuff happens here))))
Those top two lets are basically just letting me make obj and valmap strict -- making them evaluate
(
Read more... )