summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-20 07:50:34 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-20 07:50:34 -0700
commit8c08bb39c860ce264af1a35278d27658228c7a0e (patch)
tree804c0b19a4d86f6876a7f60532690b92d0b33c81 /txr.1
parent2db8b0497c7cc13b44210fb06b74d45fefccefc3 (diff)
downloadtxr-8c08bb39c860ce264af1a35278d27658228c7a0e.tar.gz
txr-8c08bb39c860ce264af1a35278d27658228c7a0e.tar.bz2
txr-8c08bb39c860ce264af1a35278d27658228c7a0e.zip
matcher: new pattern operator @(end)
* share/txr/stdlib/doc-syms.tl: New entry for end. * share/txr/stdlib/match.tl (check, check-end, check-sym, loosen, pat-len): New functions, taken from original local functions of sme macro. (sme): Refactored by hoisting local functions out. Some local variable renaming. (end): New pattern macro. * tests/011/patmatch.tl: New test for end. * txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r--txr.158
1 files changed, 58 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 191dd5ef..34b68440 100644
--- a/txr.1
+++ b/txr.1
@@ -41481,6 +41481,64 @@ then the match isn't possible.
(when-match @(sme () () 5) 5 t) -> t
.brev
+.coNP Pattern macro @ end
+.synb
+.mets @(end < pattern <> [ var ])
+.syne
+.desc
+The pattern macro
+.code end
+is a notation defined using the
+.code defmatch
+macro, which matches
+.meta pattern
+against the suffix of a corresponding list object,
+which may be an improper list or atom.
+
+The optional argument
+.meta var
+specifies the name of a variable which captures the matched portion of the
+object.
+
+The
+.code end
+macro is related to the
+.code sme
+macro according to the following equivalence:
+
+.verb
+ @(end pat var) <--> @(sme () () pat : : var)
+.brev
+
+All of the requirements given for
+.code sme
+apply accordingly.
+
+.TP* Examples:
+
+.verb
+ ;; atom match
+ (when-match @(end 3 x) 3 x) -> 3
+
+ ;; y captures (2 3)
+ (when-match @(end (2 @x) y)
+ '(1 2 3)
+ (list x y))
+ -> (3 (2 3))
+
+ ;; variable in dot position
+ (when-match @(end (2 . @x) y)
+ '(1 2 . 3)
+ (list x y))
+ -> (3 (2 . 3))
+
+ ;; z captures entire object
+ (when-match @(as z @(end (2 @x) y))
+ '(1 2 3)
+ (list x y z))
+ -> (3 (2 3) (1 2 3)))
+.brev
+
.SS* Pattern Matching Macros
.coNP Macros @ when-match and @ if-match