在 Programming Clojure(Stuart) 一书中,当阅读如何扩展宏时,我感到困惑。
user=> (defmacro chain
([x form] (list '. x form))
([x form & more] (concat (list 'chain (list '. x form)) more)))
#'user/chain
上面的宏可以展开为:
user=> (macroexpand '(chain a b c))
(. (. a b) c)
但以下仅扩展到第一级:
user=> (macroexpand '(and a b c))
(let* [and__3822__auto__ a]
(if and__3822__auto__ (clojure.core/and b c) and__3822__auto__))
和宏源:
user=> (source and)
(defmacro and([] true)
([x] x)
([x & next]
`(let [and# ~x]
(if and# (and ~@next) and#))))
为什么chain宏一直扩展而不是and?为什么它不扩展为以下内容:
user=> (macroexpand '(chain a b c d))
(. (chain a b c) d)