Skip to content

Commit

Permalink
delete Seq, its still insome signatures but spec has to lead the way
Browse files Browse the repository at this point in the history
  • Loading branch information
lichtkind committed Apr 29, 2012
1 parent f274a07 commit 203dfa8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
17 changes: 1 addition & 16 deletions docs/appendix-a-index.txt
Expand Up @@ -419,7 +419,7 @@ which generate lists in [list context](appendix-g-glossary.html#list-context)
<a id="dot-dot-dot"/><a id="dot-dot-dot-op"/><a id="sequence-op"/>
**[...](tablet-4-operators.html#sequence-operator)**
*[«list op»](tablet-4-operators.html#list-generation)* &mdash;
*[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 &mdash;
example: `@a = 1, 2, 4 ...` infite lazy list of all powers of two,
Expand Down Expand Up @@ -3323,11 +3323,6 @@ object to hold a single key-to-value association, created with a
*[«hash method»](tablet-3-variables#hash-methods)* &mdash;
returns all contents as an array or pairs (key,value)

<a id="PairSeq-type"/>
**PairSeq**
*[«mutable type»](appendix-b-grouped.html#mutable-types)* &mdash;
a **[Seq](#Seq-type)** (sequence) of **[Pairs](#Pair-type)**

<a id="panic-modifier"/>
**:panic**
*[«regex modifier»](appendix-b-grouped.html#regex-modifier)* &mdash;
Expand Down Expand Up @@ -4063,16 +4058,6 @@ to create your own
**seed** &mdash;
initialize a random number generator, optionally with a value

<a id="Seq-type"/>
**Seq**
*[«immutable type»](appendix-b-grouped.html#immutable-types)* &mdash;
a list of values (can be generated lazily)

<a id="SeqIter-type"/>
**SeqIter**
*[«mutable type»](appendix-b-grouped.html#mutable-types)* &mdash;
iterator over a Seq

<a id="Set-type"/>
**Set**
*[«immutable type»](appendix-b-grouped.html#immutable-types)* &mdash;
Expand Down
3 changes: 0 additions & 3 deletions docs/appendix-b-grouped.txt
Expand Up @@ -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
Expand All @@ -250,15 +249,13 @@ 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
[Hash](appendix-a-index.html#Hash-type) Perl hash
[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
Expand Down
6 changes: 3 additions & 3 deletions docs/report.pl
Expand Up @@ -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<a id/g);
@anchor = ($c =~ /<a id="/g);
@links = ($c =~ /\]\(/g);
print "Index G items:",scalar @items, " anchor:",scalar @anchor, " links:", scalar @links, "\n";
print "Index G items:",scalar @items, " anchor:",scalar @anchor, " links:", scalar @links, "\n";

0 comments on commit 203dfa8

Please sign in to comment.