diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-22 07:22:55 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-22 07:22:55 -0800 |
commit | 3fb32c9a73d407844fb9f7c843f70f85bee5b60e (patch) | |
tree | 211129e7609cf1c3140d915c16c2311529ddb1ce /txr.1 | |
parent | 1e8dc4f05dc5149f682ac16f3d368ec0fc82cf58 (diff) | |
download | txr-3fb32c9a73d407844fb9f7c843f70f85bee5b60e.tar.gz txr-3fb32c9a73d407844fb9f7c843f70f85bee5b60e.tar.bz2 txr-3fb32c9a73d407844fb9f7c843f70f85bee5b60e.zip |
matcher: add optimized special case to hash pattern.
This change causes a key-value pattern like (@a @b)
to be treated specially when @a already has a binding from a
previous pattern. In this case, it behaves like the
trivial key case: the value of @a is looked up to try to find
a single value. If @a is not bound, then the exhaustive
search takes place, using equal equality.
* share/txr/stdlib/match.tl (compile-hash-match): Implement
special case.
(var-pat-p): New function.
* tests/011/patmatch.tl: Existing test case now changes
value. New test case added.
* txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 36 |
1 files changed, 33 insertions, 3 deletions
@@ -40001,7 +40001,24 @@ which may be trivial or non-trivial. If .meta key-pattern -is a non-trivial pattern, but +is a simple variable pattern +.mono +.meti >> @ sym +.onom +and if +.meta sym +has an existing binding, then the value of +.meta sym +is looked up in the hash table. If it is not found, then +the match fails, otherwise the corresponding value is matched +against +.metn value-pattern , +which may be trivial or non-trivial. + +If +.meta key-pattern +is a non-trivial pattern other than a variable pattern +for a variable which has an existing binding, and if .meta value-pattern is trivial, then .meta value-pattern @@ -40056,11 +40073,24 @@ operator matching against an association list. ;; First, (x @y) has a trivial key pattern so the x ;; entry from the hash table is retrieved, the ;; value being the symbol k. This k is bound to @y. - ;; Then the pattern (@y @datum) searches the entire + ;; Because y now a bound variable the pattern (@y @datum) + ;; is interpreted as search of the hash table for + ;; a single entry matching the value of @y. This + ;; is the k entry, whose value is 42. The @datum + ;; value match takes this 42. + (when-match @(hash (x @y) (@y @datum)) #H(() (x k) (k 42)) datum) + --> 42 + + ;; Again, (x @y) has a trivial key pattern so the x + ;; entry from the hash table is retrieved, the + ;; value being the symbol k. This k is bound to @y. + ;; This time the second pattern has a @(symbolp) + ;; predicate operator. This is not a variable, and + ;; so the pattern searches the entire ;; hash table. The @y variable has a binding to k, ;; so only the (k 42) entry is matched. The 42 ;; value matches @datum, and is collected into a list. - (when-match @(hash (x @y) (@y @datum)) #H(() (x k) (k 42)) datum) + (when-match @(hash (x @y) (@(symbolp y) @datum)) #H(() (x k) (k 42)) datum) --> (42) .brev |