Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adding TABSTOP-compiler-var
  • Loading branch information
lichtkind committed Dec 9, 2012
1 parent 696f770 commit f5b74af
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions docs/appendix-a-index.txt
Expand Up @@ -4534,6 +4534,12 @@ anything but a tab
[*«escape sequence»*](appendix-b-grouped.html#escape-sequences) —
tab `\u0009`, not visible character (control char)


<a id="TABSTOP-compiler-var"/>
**$?TABSTOP**
[*«special var»*](appendix-b-grouped.html#compiler-hint-variables) &mdash;


<a id="take"/>
[**take**](tablet-6-blocks.html#gather-and-take)
can add several item to the list of return values of a
Expand Down
17 changes: 9 additions & 8 deletions docs/appendix-b-grouped.txt
Expand Up @@ -117,6 +117,7 @@ compiler constants (fixed at compile time)
[`&?ROUTINE`](appendix-a-index.html#ROUTINE-compiler-var) current sub or method
[`&?BLOCK`](appendix-a-index.html#BLOCK-compiler-var) reference to current block
[`$?LINE`](appendix-a-index.html#LINE-compiler-var) current line number
[`$?TABSTOP`](appendix-a-index.html#TABSTOP-compiler-var)
---------------------------------------------------------------- ------------------------------------------------------------------

### POD Variables ###
Expand Down Expand Up @@ -421,16 +422,16 @@ that can be used to create new categories.
[`circumfix:<( )>`](appendix-a-index.html#circumfix-category)
[`dotty:<.>`](appendix-a-index.html#dotty-category)
[`infix:<+>`](appendix-a-index.html#infix-category)
[`infix_circumfix_meta_operator:{'«','»'}`](appendix-a-index.html#infix-circumfix-meta-operator-category)
[`infix_circumfix_meta_operator:{'',''}`](appendix-a-index.html#infix-circumfix-meta-operator-category)
[`infix_postfix_meta_operator:<=>`](appendix-a-index.html#infix-postfix-meta-operator-category)
[`infix_prefix_meta_operator:<!>`](appendix-a-index.html#infix-prefix-meta-operator-category)
[`package_declarator:<class>`](appendix-a-index.html#package-declarator-category)
[`postcircumfix:<( )>`](appendix-a-index.html#postcircumfix-category)
[`postfix:<++>`](appendix-a-index.html#postfix-category)
[`postfix_prefix_meta_operator:{'»'}`](appendix-a-index.html#postfix-prefix-meta-operator-category)
[`postfix_prefix_meta_operator:{''}`](appendix-a-index.html#postfix-prefix-meta-operator-category)
[`prefix:<++>`](appendix-a-index.html#prefix-category)
[`prefix_circumfix_meta_operator:{'[',']'}`](appendix-a-index.html#prefix-circumfix-meta-operator-category)
[`prefix_postfix_meta_operator:{'«'}`](appendix-a-index.html#prefix-postfix-meta-operator-category)
[`prefix_postfix_meta_operator:{''}`](appendix-a-index.html#prefix-postfix-meta-operator-category)
[`quote:<q>`](appendix-a-index.html#quote-category)
[`routine_declarator:<sub>`](appendix-a-index.html#routine-declarator-category)
[`scope_declarator:<my>`](appendix-a-index.html#scope-declarator-category)
Expand Down Expand Up @@ -496,9 +497,9 @@ The two hyper operators and the evaluating autoquoting can be written with the
signs (documented as "Texas Quotes").

--- -------------------------------------------------------- -----------------------------------------------
« [\<\<](appendix-a-index.html#lower-lower-op) Hyperop, right side dictates length of result
» [\>\>](appendix-a-index.html#greater-greater-op) Hyperop, left side dictates length of result
« » [\<\< \>\>](appendix-a-index.html#double-angle-brackets) [**qw**](appendix-a-index.html#qw-op) with [evaluation](appendix-g-glossary.html#evaluation) and [quote protection](appendix-g-glossary.html#quote-protection)
[\<\<](appendix-a-index.html#lower-lower-op) Hyperop, right side dictates length of result
[\>\>](appendix-a-index.html#greater-greater-op) Hyperop, left side dictates length of result
� � [\<\< \>\>](appendix-a-index.html#double-angle-brackets) [**qw**](appendix-a-index.html#qw-op) with [evaluation](appendix-g-glossary.html#evaluation) and [quote protection](appendix-g-glossary.html#quote-protection)
--- -------------------------------------------------------- -----------------------------------------------


Expand Down Expand Up @@ -574,9 +575,9 @@ Selection of the comparison alhorithm (4th column) is based on the value
[Set](appendix-a-index.html#Set-type) [Set](appendix-a-index.html#Set-type) identical sets `$_ === X`
[Hash](appendix-a-index.html#Hash-type) [Set](appendix-a-index.html#Set-type) hash keys same set `$_.keys === X`
[Any](appendix-a-index.html#Any-type) [Set](appendix-a-index.html#Set-type) force set comparison `Set($_) === X`
[Array](appendix-a-index.html#Array-type) [Array](appendix-a-index.html#Array-type) arrays are comparable `$_ «===» X` (dwims `*` wildcards!)
[Array](appendix-a-index.html#Array-type) [Array](appendix-a-index.html#Array-type) arrays are comparable `$_ === X` (dwims `*` wildcards!)
[Set](appendix-a-index.html#Set-type) [Array](appendix-a-index.html#Array-type) array equiv to set `$_ === Set(X)`
[Any](appendix-a-index.html#Any-type) [Array](appendix-a-index.html#Array-type) lists are comparable `@$_ «===» X`
[Any](appendix-a-index.html#Any-type) [Array](appendix-a-index.html#Array-type) lists are comparable `@$_ === X`
[Hash](appendix-a-index.html#Hash-type) [Hash](appendix-a-index.html#Hash-type) hash keys same set `$_.keys === X.keys`
[Set](appendix-a-index.html#Set-type) [Hash](appendix-a-index.html#Hash-type) hash keys same set `$_ === X.keys
[Array](appendix-a-index.html#Array-type) [Hash](appendix-a-index.html#Hash-type) hash slice existence `X.{any @$_}:exists`
Expand Down

0 comments on commit f5b74af

Please sign in to comment.