在宏扩展体方案中将列表列表转换为列表集?

发布于 2024-09-29 03:15:58 字数 132 浏览 2 评论 0原文

是否有一种通用的方法来获取项目列表并将其展平到深度零,以便它们可以拼接成宏扩展?例如:

((+ 1 2) (+ 3 4) (+ 4 5)) -> (+ 1 2) (+ 3 4) (+ 4 5)

Is there a general way to take a list of items and flatten it to depth zero so that they can be spliced into a macro expansion? For instance:

((+ 1 2) (+ 3 4) (+ 4 5)) -> (+ 1 2) (+ 3 4) (+ 4 5)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻找一个思念的角度 2024-10-06 03:15:58

注意:这是基于 Eli Barzilay 的评论,但最终从未变成答案。这就是为什么它是社区 wiki。

如果您想要一系列表达式来扩展宏,那么您需要将它们包装在 begin 中。至于展平,您可以在要拼接的内容后面使用 ... 来实现。当然,这是假设您使用的是 syntax-rulessyntax-case

Note: This is based on Eli Barzilay's comment that never ended up getting turned into an answer. That's why it's community wiki.

If you want a sequence of expressions for the expansion of a macro, then you need to wrap them in a begin. As for the flattening, you can do that with a ... after the thing that you want to splice up. This is assuming that you're using syntax-rules or syntax-case, of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文