On Jul 12, 12:01 pm, Konrad Hinsen <[email protected]> wrote: > The composability issue with macros lies in writing them, not using them.
Strongly disagree. Macros compose reasonably well when writing them (eg, using let in the implementation of with-open is trivial); it's composing already-written macros with other pieces of your codebase that's hard. (reduce and xs) won't test that every element of xs is truthy, because and is a macro and thus can't be used as a higher- order function. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
