作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个宏,该宏扩展为具有解构的 let 形式。我的问题是我想拥有以 let 形式定义的符号列表,包括通过解构获得的符号列表。
用例
我试图排除这种行为,例如验证:
(let [a (foo bar)
{x :x,
y :y,
{u :u, v: v :as nested-map} :nested} some-map]
(and x y nested-map u v ; testing truthiness
(valid-a? a)
(valid-x? x)
(valid-y? y)
(valid-nested? nested-map)
(valid-u-and-v? u v)
))
and-let
来实现这一点,那就太好了。我可以这样调用的宏:
(and-let [a (foo bar)
{x :x,
y :y,
{u :u, v: v :as nested-map} :nested} some-map]
(valid-a? a)
(valid-x? x)
(valid-nested? nested-map)
(valid-u-and-v? u v))
list-bound-symbols
的东西功能,我可以这样做:
(defmacro and-let
"Expands to an AND close that previouly checks that the values declared in bindings are truthy, followed by the tests."
[bindings & tests]
(let [bound-symbols (list-bound-symbols bindings) ;; what I'm missing
]
`(let ~bindings
(and
~@bound-symbols
~@tests)
)))
最佳答案
解构由 clojure.core/destructure
处理。功能。它是公开的,因此我们可以自己调用它并提取所有本地人的名称,包括那些命名用于解构的中间结果的名称:
(defmacro and-let [bindings & tests]
(let [destructured (destructure bindings)]
`(let ~destructured
(and ~@(take-nth 2 destructured)
~@tests))))
(let [foo nil]
(and-let [a 1
[b c] [2 3]]
(nil? foo)))
;= true
关于macros - 让表格: How to access destructured symbols in a macro?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23216696/
我是一名优秀的程序员,十分优秀!