Skip to content

Commit 368aaa2

Browse files
committed
fixing links of last nights endevour
1 parent 4285762 commit 368aaa2

File tree

2 files changed

+30
-21
lines changed

2 files changed

+30
-21
lines changed

docs/appendix-a-index.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,6 @@ rightward pointing feed operator, take return value of left side
652652
and feed as parameter to the right —
653653
see also: [*\<==*](#lower-equal-equal-op) and [*==\>\>*](#equal-equal-greater-greater-op)
654654

655-
656655
<a id="equal-equal-greater-greater-op"/>
657656
**==\>\>**
658657
*[«sequencer op»](tablet-4-operators.html#feed-ops)* &mdash;
@@ -1883,7 +1882,7 @@ keys that are not already part of a pair (one more than the previous
18831882
key had) &mdash;
18841883
example: `%hash = enum <<:Mon(1) Tue Wed Thu Fri Sat Sun>>;`
18851884

1886-
<a id="Enum-type"/>
1885+
<a id="EnumMap-type"/>
18871886
**EnumMap**
18881887
*[«immutable type»](appendix-b-grouped.html#immutable-types)* &mdash;
18891888
A mapping of Enums with no duplicate keys
@@ -2425,6 +2424,11 @@ uppercase and lowercase variants of a letter are taken as the
24252424
same letter, short for **[:ignorecase](#ignorecase-modifier)**
24262425
(same as in Perl 5)
24272426

2427+
<a id="ident-subrule"/>
2428+
**\<ident\>**
2429+
*[«predefined subrule»](appendix-b-grouped.html#subrules)* &mdash;
2430+
an identifier
2431+
24282432
<a id="if"/>
24292433
**[if](tablet-6-blocks.html#if)**
24302434
*[«conditional»](appendix-b-grouped.html#conditionals)* &mdash;
@@ -2536,8 +2540,8 @@ a point on the continuous atomic timeline
25362540
<a id="Int-type"/>
25372541
**Int**
25382542
*[«immutable type»](appendix-b-grouped.html#immutable-types)* &mdash;
2539-
Perl integer, objext type to hold whole number like &mdash;1, 2 or
2540-
6000, allows **[Inf](#Inf)** / NaN, arbitrary precision,
2543+
Perl integer, objext type to hold whole number like 1, 2 or 6000,
2544+
allows **[Inf](#Inf)** / NaN, arbitrary precision,
25412545
use it as method to convert into a **Int** like the Perl 5 *int*
25422546

25432547
**invert**
@@ -2776,6 +2780,11 @@ logarithm of $x to the $base
27762780
logarithm to the base of 10,
27772781
also known as *log* on calculators and *lg* in math classes
27782782

2783+
<a id="LoL-type"/>
2784+
**Lol**
2785+
*[«immutable type»](appendix-b-grouped.html#immutable-types)* &mdash;
2786+
arguments in a semicolon list, name is short fpr "List of Lists"
2787+
27792788
<a id="lol"/>
27802789
**lol**()
27812790
*[«context op»](appendix-b-grouped.html#contextualizers)* &mdash;

docs/appendix-b-grouped.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% Perl 6 Tablets Appendix B - Grouping
1+
% Perl 6 Tablets Appendix B - Thematically Grouped Index
22

33

44
Variables
@@ -249,7 +249,7 @@ Widget Any Widget object
249249
### Mutable types ###
250250

251251
----------------------------------------------------- ---------------------------------------------------------
252-
[Iterator](appendix-a-index.html#Failure-type) Perl list
252+
[Iterator](appendix-a-index.html#Iterator-type) Perl list
253253
[SeqIter](appendix-a-index.html#SeqIter-type) Iterator over a Seq
254254
[RangeIter](appendix-a-index.html#RangeIter-type) Iterator over a Range
255255
[Scalar](appendix-a-index.html#Scalar-type) Perl scalar
@@ -502,21 +502,21 @@ Contextualizers
502502

503503
Infix operator or functions that forcing a context.
504504

505-
------------------------------------------- ------------------------------------ ----------------------------------------------------------------------------------------------
506-
[`$()`](appendix-a-index.html#dollar-op) [item()](appendix-a-index.html#item) [scalar/item context](tablet-3-variables.html#scalar)
507-
[`?`](appendix-a-index.html#dollar-op) [so()](appendix-a-index.html#so) [boolean](](tablet-4-operators.html#bool-context)
508-
[`!`](appendix-a-index.html#exclamation-op) [not()](appendix-a-index.html#not) negated bool context
509-
[`+`](appendix-a-index.html#plus-op) &nbsp; [numeric](](tablet-4-operators.html#numeric-context)
510-
[`-`](appendix-a-index.html#minus-op) &nbsp; negated num context
511-
[`~`](appendix-a-index.html#tilde-op) &nbsp; [string](](tablet-4-operators.html#string-context)
512-
[`@()`](appendix-a-index.html#at-op) [list()](appendix-a-index.html#list) [array/list context](variables.html#array)
513-
&nbsp; [flat()](appendix-a-index.html#flat) flat list
514-
&nbsp; [lol()](appendix-a-index.html#lol) list of list (was slice context before)
515-
[`%()`](appendix-a-index.html#percent-op) [hash()](appendix-a-index.html#hash) [hash context](tablet-3-variables.html#hash)
516-
[`&()`](appendix-a-index.html#ampersand-op) [code()](appendix-a-index.html#code) [coderef](tablet-3-variables.html#callable), [routines](ap-b-lookup.html#routines)
517-
[`|`](appendix-a-index.html#pipe-op) &nbsp; flatten [capture](tablet-3-variables.html#capture) object into arglist (named parameter)
518-
[`||`](appendix-a-index.html#pipe-pipe-op) &nbsp; flatten [capture](tablet-3-variables.html#capture) object into semicolon list (positional parameter)
519-
------------------------------------------- ------------------------------------ ----------------------------------------------------------------------------------------------
505+
----------------------------------------------- ------------------------------------ ----------------------------------------------------------------------------------------------
506+
[`$()`](appendix-a-index.html#dollar-op) [item()](appendix-a-index.html#item) [scalar/item context](tablet-3-variables.html#scalar)
507+
[`?`](appendix-a-index.html#question-op) [so()](appendix-a-index.html#so) [boolean](](tablet-4-operators.html#bool-context)
508+
[`!`](appendix-a-index.html#exclamation-op) [not()](appendix-a-index.html#not) negated bool context
509+
[`+`](appendix-a-index.html#plus-op) &nbsp; [numeric](](tablet-4-operators.html#numeric-context)
510+
[`-`](appendix-a-index.html#minus-op) &nbsp; negated num context
511+
[`~`](appendix-a-index.html#tilde-op) &nbsp; [string](](tablet-4-operators.html#string-context)
512+
[`@()`](appendix-a-index.html#at-op) [list()](appendix-a-index.html#list) [array/list context](variables.html#array)
513+
&nbsp; [flat()](appendix-a-index.html#flat) flat list
514+
&nbsp; [lol()](appendix-a-index.html#lol) list of list (was slice context before)
515+
[`%()`](appendix-a-index.html#percent-op) [hash()](appendix-a-index.html#hash) [hash context](tablet-3-variables.html#hash)
516+
[`&()`](appendix-a-index.html#ampersand-op) [code()](appendix-a-index.html#code) [coderef](tablet-3-variables.html#callable), [routines](ap-b-lookup.html#routines)
517+
[`|`](appendix-a-index.html#pipe-context) &nbsp; flatten [capture](tablet-3-variables.html#capture) object into arglist (named parameter)
518+
[`||`](appendix-a-index.html#pipe-pipe-context) &nbsp; flatten [capture](tablet-3-variables.html#capture) object into semicolon list (positional parameter)
519+
----------------------------------------------- ------------------------------------ ----------------------------------------------------------------------------------------------
520520

521521

522522

0 commit comments

Comments
 (0)