gpt4 book ai didi

macros - (Chez) 用于隐藏 lambdas 的 Scheme 宏

转载 作者:行者123 更新时间:2023-12-04 10:26:12 26 4
gpt4 key购买 nike

我想编写一个宏来创建用于隐藏更冗长的 lambda 表达式的速记语法,但我正在努力理解如何编写宏(我意识到这是反对使用它们的论据)。

鉴于这个例子:

(define alist-example
'((x 1 2 3) (y 4 5 6) (z 7 8 9)))

(define ($ alist name)
(cdr (assoc name alist)))

((lambda (a) (map (lambda (x y z) (+ x y z)) ($ a 'x) ($ a 'y) ($ a 'z))) alist-example)
((lambda (a) (map (lambda (y) (/ y (apply max ($ a 'y)))) ($ a 'y))) alist-example)

我想写一个宏, with-alist ,这将允许我写出与此类似的最后两个表达式:
(with-alist alist-example (+ x y z))
(with-alist alist-example (/ y (apply max y)))

任何意见或建议?

最佳答案

这是一个 syntax-rules基于我在其他答案和评论中收到的反馈的解决方案:

(define ($ alist name)
(cdr (assoc name alist)))

(define-syntax with-alist
(syntax-rules ()
[(_ alist names expr)
(let ([alist-local alist])
(apply map (lambda names expr)
(map (lambda (name) ($ alist-local name)) (quote names))))]))

以下是一些示例用法:
> (define alist-example
'((x 1 2 3) (y 4 5 6) (z 7 8 9)))
> (with-alist alist-example (x) (+ x 2))
(3 4 5)
> (with-alist alist-example (x y) (+ x y))
(5 7 9)
> (with-alist alist-example (x y z) (+ x y z))
(12 15 18)

这个答案没有解决更复杂的例子, (with-alist alist-example (/ y (apply max y))) ,在我的问题中,但我认为这对我的目的来说是一种合理的方法:
> (with-alist alist-example (y) (/ y (apply max ($ alist-example 'y))))
(2/3 5/6 1)

编辑:经过一些额外的修补后,我得出了一个稍微不同的解决方案,我认为它会提供更多的灵活性。

我的新宏, npl , 将速记表达式扩展为名称和过程列表。
(define-syntax npl
(syntax-rules ()
[(_ (names expr) ...)
(list
(list (quote names) ...)
(list (lambda names expr) ...))]))

这个宏的输出被传递给一个常规过程, with-list-map ,其中包含 with-alist 中的大部分核心功能上面的宏。
(define (with-alist-map alist names-proc-list)
(let ([names-list (car names-proc-list)]
[proc-list (cadr names-proc-list)])
(map (lambda (names proc)
(apply map proc
(map (lambda (name) ($ alist name)) names)))
names-list proc-list)))
with-alist的3个例子以上用法可以在对 with-alist-map 的一次调用中捕获。 .
> (with-alist-map alist-example
(npl ((x) (+ x 2))
((x y) (+ x y))
((x y z) (+ x y z))))
((3 4 5) (5 7 9) (12 15 18))

关于macros - (Chez) 用于隐藏 lambdas 的 Scheme 宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60625913/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com