diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-16 08:18:24 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-16 08:18:24 -0800 |
commit | 66ca884d757fa14f56ea362a0da722e27804ad47 (patch) | |
tree | ea8712d89e7d4dbde297b6792ea4754b2cd24fb2 | |
parent | 165f289b0a028906e574281286bc0e8f98346b6b (diff) | |
download | txr-66ca884d757fa14f56ea362a0da722e27804ad47.tar.gz txr-66ca884d757fa14f56ea362a0da722e27804ad47.tar.bz2 txr-66ca884d757fa14f56ea362a0da722e27804ad47.zip |
matcher: add lambda-match and defun-match
* lisplib.c (match_set_entries): New autoload triggers.
* share/txr/stdlib/match.tl (lambda-match, defun-match): New
macros.
-rw-r--r-- | lisplib.c | 1 | ||||
-rw-r--r-- | share/txr/stdlib/match.tl | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -875,6 +875,7 @@ static val match_set_entries(val dlt, val fun) }; val name[] = { lit("when-match"), lit("match-case"), lit("if-match"), + lit("lambda-match"), lit("defun-match"), nil }; diff --git a/share/txr/stdlib/match.tl b/share/txr/stdlib/match.tl index 695a0310..9648901c 100644 --- a/share/txr/stdlib/match.tl +++ b/share/txr/stdlib/match.tl @@ -294,3 +294,13 @@ ^(let (,flag ,result) ,*clause-code ,result))) + +(defmacro lambda-match (. clauses) + (with-gensyms (args) + ^(lambda (. ,args) + (match-case ,args ,*clauses)))) + +(defmacro defun-match (name . clauses) + (with-gensyms (args) + ^(defun ,name (. ,args) + (match-case ,args ,*clauses)))) |