summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2005-03-14 09:55:39 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-03-18 15:04:39 +0000
commita3621e74372f5d2c10ed0d2a21195cab42a5be54 (patch)
treeaf6f341cee80094a7b5a4c5ce1a572ae7716d394 /regcomp.sym
parent20ef40cf6a00eee95a449854794854a93e411e3b (diff)
downloadperl-a3621e74372f5d2c10ed0d2a21195cab42a5be54.tar.gz
Re: Reworked Trie Patch
Date: Mon, 14 Mar 2005 08:55:39 +0100 Message-ID: <9b18b31105031323557019ae1@mail.gmail.com> Subject: Re: Reworked Trie Patch From: demerphq <demerphq@gmail.com> Date: Wed, 16 Mar 2005 19:48:18 +0100 Message-ID: <9b18b31105031610481025a080@mail.gmail.com> Plus minor nits in the documentation of re.pm, a version bump, and addition of an OPTIMIZE alias p4raw-id: //depot/perl@24044
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym5
1 files changed, 5 insertions, 0 deletions
diff --git a/regcomp.sym b/regcomp.sym
index 850800c7f5..1bcdecb48b 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -60,6 +60,11 @@ EXACT EXACT, sv Match this string (preceded by length).
EXACTF EXACT, sv Match this string, folded (prec. by length).
EXACTFL EXACT, sv Match this string, folded in locale (w/len).
+# Trie Related (behave the same as A|LIST|OF|WORDS would)
+TRIE TRIE, trie 1 Match one or more of many EXACT strings
+TRIEF TRIE, trie 1 Match one or more of many EXACTF strings
+TRIEFL TRIE, trie 1 Match one or more of many EXACTFL strings
+
# Do nothing
NOTHING NOTHING,no Match empty string.
# A variant of above which delimits a group, thus stops optimizations