This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-macro (& exp . body) | |
`(let1 <> ,exp ,@body)) | |
(& 2 | |
(& (* <> 2) | |
(list <> (+ 1 <>)))) |
そこで、srfi-26 の cut っぽい let があったら便利そうだなぁ。。と思ったので、こちらも試しに書いてみました。みましたが・・・。(名前は、cut っぽい let -> cutlet -> cet と取りあえず)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-syntax cet-helper | |
(syntax-rules (cet <>) | |
;; base | |
((_ val (x ...)()) | |
(x ...)) | |
;; list | |
((_ val (x ...)((nest ...) rest ...)) | |
(cet-helper val (x ... (cet-helper val ()(nest ...)))(rest ...))) | |
((_ val (x ...)(<> rest ...)) | |
(cet-helper val (x ... val)(rest ...))) | |
((_ val (x ...)(a rest ...)) | |
(cet-helper val (x ... a)(rest ...))) | |
;; atom | |
((_ val (x ...) <>) | |
val) | |
((_ val (x ...) a) | |
a))) | |
(define-syntax cet | |
(syntax-rules () | |
((_ expr body ...) | |
(let ((tmp expr)) | |
(cet-helper tmp () body ...))))) | |
(cet (* 2 2) | |
(list <> <> <> <>)) | |
;; (4 4 4 4) | |
(cet 10 <>) | |
;; 10 | |
(use srfi-1) | |
(cet 10 (map list (iota <>))) | |
;; ((0) (1) (2) (3) (4) (5) (6) (7) (8) (9)) | |
(cet (* 2 2) | |
(apply + <> (list <> (+ 1 <>)))) | |
;; 13 | |
(cet 2 | |
(cet (* <> 2) | |
(list <> (+ 1 <>)))) | |
;; error |
ネストした時ダメですね。。こういう時はどう扱ったら良いんでしょうか。わかりません。以下のように少し書き足してもみましたが・・・。動いたとしても、ここまでするなら一番最初のアナフォリックマクロで良いかなーと思いました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-syntax cet-helper | |
(syntax-rules (cet <>) | |
;; base | |
((_ val (x ...)()) | |
(x ...)) | |
;; add | |
((_ val (x ...)((cet exp b ...) rest ...)) | |
(cet-helper val (x ... (cet (cet-helper val () exp) b ...))(rest ...))) | |
;; list | |
((_ val (x ...)((nest ...) rest ...)) | |
(cet-helper val (x ... (cet-helper val ()(nest ...)))(rest ...))) | |
((_ val (x ...)(<> rest ...)) | |
(cet-helper val (x ... val)(rest ...))) | |
((_ val (x ...)(a rest ...)) | |
(cet-helper val (x ... a)(rest ...))) | |
;; atom | |
((_ val (x ...) <>) | |
val) | |
((_ val (x ...) a) | |
a))) | |
(cet 2 | |
(cet (* <> 2) | |
(list <> (+ 1 <>)))) | |
;; error |
しかし、srfi のコードは美しいですねぇ。今回も大変勉強になりました。
0 件のコメント:
コメントを投稿