diff --git a/docs/appendix-a-index.txt b/docs/appendix-a-index.txt index 3a33c7e..70db69b 100644 --- a/docs/appendix-a-index.txt +++ b/docs/appendix-a-index.txt @@ -419,7 +419,7 @@ which generate lists in [list context](appendix-g-glossary.html#list-context) **[...](tablet-4-operators.html#sequence-operator)** *[«list op»](tablet-4-operators.html#list-generation)* — -*[infix](#infix-category)* [sequence](#Seq-type) generating operator, +*[infix](#infix-category)* [sequence](appendix-g-glossary.html#sequance) generating operator, can figure from example number out if a series is arithmetic (give 2) or geometric (give 3), can produce a sequence with a generator routine — example: `@a = 1, 2, 4 ...` infite lazy list of all powers of two, @@ -3323,11 +3323,6 @@ object to hold a single key-to-value association, created with a *[«hash method»](tablet-3-variables#hash-methods)* — returns all contents as an array or pairs (key,value) - -**PairSeq** -*[«mutable type»](appendix-b-grouped.html#mutable-types)* — -a **[Seq](#Seq-type)** (sequence) of **[Pairs](#Pair-type)** - **:panic** *[«regex modifier»](appendix-b-grouped.html#regex-modifier)* — @@ -4063,16 +4058,6 @@ to create your own **seed** — initialize a random number generator, optionally with a value - -**Seq** -*[«immutable type»](appendix-b-grouped.html#immutable-types)* — -a list of values (can be generated lazily) - - -**SeqIter** -*[«mutable type»](appendix-b-grouped.html#mutable-types)* — -iterator over a Seq - **Set** *[«immutable type»](appendix-b-grouped.html#immutable-types)* — diff --git a/docs/appendix-b-grouped.txt b/docs/appendix-b-grouped.txt index c4d7700..f11e9c2 100644 --- a/docs/appendix-b-grouped.txt +++ b/docs/appendix-b-grouped.txt @@ -228,7 +228,6 @@ Widget Any Widget object [Bool](appendix-a-index.html#Bool-type) Perl boolean [Exception](appendix-a-index.html#Exception-type) Perl exception [Block](appendix-a-index.html#Block-type) executable objects that have lexical scopes -[Seq](appendix-a-index.html#Seq-type) a list of values (can be generated lazily) [Range](appendix-a-index.html#Range-type) a pair of ordered endpoints [Set](appendix-a-index.html#Set-type) unordered collection of values that allows no duplicates [Bag](appendix-a-index.html#Bag-type) unordered collection of values that allows duplicates @@ -250,7 +249,6 @@ Widget Any Widget object ----------------------------------------------------- --------------------------------------------------------- [Iterator](appendix-a-index.html#Iterator-type) Perl list -[SeqIter](appendix-a-index.html#SeqIter-type) Iterator over a Seq [RangeIter](appendix-a-index.html#RangeIter-type) Iterator over a Range [Scalar](appendix-a-index.html#Scalar-type) Perl scalar [Array](appendix-a-index.html#Array-type) Perl array @@ -258,7 +256,6 @@ Widget Any Widget object [KeySet](appendix-a-index.html#KeySet-type) KeyHash of Bool (does Set in list/array context) [KeyBag](appendix-a-index.html#KeyBag-type) KeyHash of UInt (does Bag in list/array context) [Pair](appendix-a-index.html#Pair-type) a single key-to-value association -[PairSeq](appendix-a-index.html#PairSeq-type) a Seq of Pairs [Buf](appendix-a-index.html#Buf-type) Perl buffer (a stringish array of memory locations) [IO](appendix-a-index.html#IO-type) Perl filehandle [Routine](appendix-a-index.html#Routine-type) base class for all wrappable executable objects diff --git a/docs/report.pl b/docs/report.pl index e92251c..6e062f7 100755 --- a/docs/report.pl +++ b/docs/report.pl @@ -8,17 +8,17 @@ open $FH, '<', "appendix-b-grouped.txt"; $c = do {local $/; <$FH>}; @links = ($c =~ /\]\(/g); -print "Index B links:", scalar @links, "\n"; +print "Index B links:", scalar @links, "\n"; open $FH, '<', "appendix-d-delta.txt"; $c = do {local $/; <$FH>}; @links = ($c =~ /\]\(/g); -print "Index D links:", scalar @links, "\n"; +print "Index D links:", scalar @links, "\n"; open $FH, '<', "appendix-g-glossary.txt"; $c = do {local $/; <$FH>}; @items = ($c =~ /\n\n