diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-04 07:22:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-04 07:22:08 -0700 |
commit | c5c227d4ed411e4828bc0b2685693e60cef585c4 (patch) | |
tree | c9df74d7df043e8e31c253c896fc323e22a69e31 /txr.1 | |
parent | fdba421c3b61b5e7c696114f9bc424a25e27d692 (diff) | |
download | txr-c5c227d4ed411e4828bc0b2685693e60cef585c4.tar.gz txr-c5c227d4ed411e4828bc0b2685693e60cef585c4.tar.bz2 txr-c5c227d4ed411e4828bc0b2685693e60cef585c4.zip |
matcher: doc fix, quasiquote examples, new test.
* tests/011/patmatch.tl: New test case.
* txr.1: Heading fix: Quasiquote matching notation, not
quasiliteral. Examples of quasiquote notation added.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 42 |
1 files changed, 41 insertions, 1 deletions
@@ -41277,7 +41277,7 @@ supported in quasiliteral patterns. .brev -.NP* Quasiliteral matching notation +.NP* Quasiquote matching notation .synb .mets >> ^ qq-syntax .syne @@ -41376,6 +41376,46 @@ Splicing JSON syntax is diagnosed as an error inside a JSON quasiliteral. .meIP < obj Any other quasiquoted object is left untranslated. .RE +.IP +.TP* Examples: +.verb + ;; basic unquote: variables embedded via unquote, + ;; not requiring @ prefix. + (when-match ^(,a ,b) '(1 2) (list a b)) + --> (1 2) + + ;; operators embedded via unquote; interior of operators + ;; is regular non-quasiquoting pattern syntax. + (when-match ^(,(oddp @a) ,(evenp @b)) '(1 2) (list a b)) + --> (1 2) + + (when-match ^#(,a ,b) #(1 2) (list a b)) + --> (1 2) + + (when-match ^#S(,type year ,y) #S(time year 2021) + (list (struct-type-name type) y)) + --> (time 2021) + + (when-match ^#H(() (x ,y) (,(symbolp @y) ,datum)) + #H(() (x k) (k 42)) + datum) + --> (42) + + ;; JSON syntax + + (when-match ^#J~a 42.0 a) --> 42.0 + + (when-match ^#J[~a, ~b] #J[true, false] (list a b)) --> (t nil) + + (when-match ^#J{"x" : ~y, ~(symbolp @y) : ~datum} + #J{"x" : true, true : 42} + datum) + --> (42.0) + + (when-match ^#J{"foo" : {"x" : ~val}} + #J{"foo" : {"x" : "y"}} val) + --> "y" +.brev .coNP Pattern operator @ struct .synb |