Skip to content

Commit

Permalink
fixing B tables and polish ++ and --
Browse files Browse the repository at this point in the history
  • Loading branch information
lichtkind committed Apr 29, 2012
1 parent 6835586 commit f274a07
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
18 changes: 10 additions & 8 deletions docs/appendix-a-index.txt
Expand Up @@ -274,7 +274,7 @@ are accessible in all *[scopes](appendix-g-glossary.html#scope)*
*[«regex metachar»](appendix-b-grouped.html#quantifier)* —
quantifier for zero or more findings

<a id="asterisk-asterisk-op"/>
<a id="asterisk-asterisk-op"/><a id="power-op"/>
**\*\***
*[«numeric op»](tablet-4-operators.html#numeric-context)* &mdash;
raises a number to a power,
Expand Down Expand Up @@ -327,10 +327,11 @@ forces [numeric context](appendix-g-glossary.html#numeric-context)
<a id="plus-plus-op"/><a id="auto-increment"/>
**++**
*[«sequence traversal»](tablet-4-operators.html#traversing-sequence)* &mdash;
generic autoincrement, calls internal iterator of that object,
before (prefix) or after (suffix) the
[evaluation](appendix-g-glossary.html#evaluation) of the surrounding term,
alias to **[succ](#succ)**, opposite of **[--](#<a id="auto-decrement"/>)**
generic autoincrement, changes this value to its next neighbour in its ordered set,
can be used as [prefix](#prefix_category) (take effect before
[evaluating](appendix-g-glossary.html#evaluation) the surrounding term)
or [suffix](#suffix_category) (incrementing afterwards),
alias to **[succ](#succ)**, opposite of **[--](#auto-decrement)**

<a id="plus-lower-op"/>
**+<**
Expand Down Expand Up @@ -370,9 +371,10 @@ opposite of [**+**](#plus-op)
<a id="minus-minus-op"/><a id="auto-decrement"/>
**--**
*[«sequence traversal»](tablet-4-operators.html#traversing-sequence)* &mdash;
generic autodecrement, calls internal iterator of that object,
before (prefix) or after (suffix) the
[evaluation](appendix-g-glossary.html#evaluation) of the surrounding term,
generic autodecrement, changes this value to its previous neighbour in its ordered set,
can be used as [prefix](#prefix_category) (take effect before
[evaluating](appendix-g-glossary.html#evaluation) the surrounding term)
or [suffix](#suffix_category) (incrementing afterwards),
alias to **[pred](#pred)**, opposite of **[++](#<a id="auto-increment"/>)**

<a id="minus-minus-greater-signature"/>
Expand Down
8 changes: 4 additions & 4 deletions docs/appendix-b-grouped.txt
Expand Up @@ -343,8 +343,8 @@ A Level Examples
-- ----------------- ----------------------------------------------------
N Terms `42 3.14 "eek" qq["foo"] $x :!verbose @$array`
L Method postfix `.meth .+ .? .* .() .[] .{} .<> .<<>> .:: .= .^ .:`
N Autoincrement `++ --`
R Exponentiation `**`
N Autoincrement [`++`](appendix-a-index.html#auto-increment) [`--`](appendix-a-index.html#auto-decrement)
R Exponentiation [`**`](appendix-a-index.html#power-op)
L Symbolic unary `! + - ~ ? | || +^ ~^ ?^ ^`
L Multiplicative `* / % %% +& +< +> ~& ~< ~> ?& div mod gcd lcm`
L Additive `+ - +| +^ ~| ~^ ?| ?^`
Expand Down Expand Up @@ -771,8 +771,8 @@ To be used just inside of regexes (rx/.../, m/.../, s/.../.../ and tr/.../.../).
[`\t`](appendix-a-index.html#backslash-t) a tab
[`\T`](appendix-a-index.html#backslash-T) anything but a tab
[`\U[ ... ]`](appendix-a-index.html#backslash-U) everything within the brackets is uppercase
[`\v`](#backslash-v) vertical whitespace
[`\V`](#backslash-V) anything but vertical whitespace
[`\v`](appendix-a-index.html#backslash-v) vertical whitespace
[`\V`](appendix-a-index.html#backslash-V) anything but vertical whitespace
[`\w`](appendix-a-index.html#backslash-X) word character (Unicode alphanumeric plus "_")
[`\W`](appendix-a-index.html#backslash-X) anything but a word character
[`\x[ ... ]`](appendix-a-index.html#backslash-x) character given in hexadecimal (brackets optional)
Expand Down
4 changes: 2 additions & 2 deletions docs/appendix-g-glossary.txt
Expand Up @@ -175,9 +175,9 @@ important to the commands
transforming something, that it gets ready for practical usage -
sometimes means that just replacing in a piece of code all variables with there
current content, cometimes more like interpreting or compiling something;
inside quotes and [regexes](#regex) ot has the first meaning,
inside quotes and [regexes](#regex) it has the first meaning,
the command **[eval](appendix-a-index.html#eval)** and
**[evalfile](appendix-a-index.html#evalfile)**does the second
**[evalfile](appendix-a-index.html#evalfile)**does the second.

<a id="expression"/>
**expression** &mdash;
Expand Down

0 comments on commit f274a07

Please sign in to comment.