Skip to content

Commit d1c4c64

Browse files
committed
Escape | and + in table cells
1 parent 931506d commit d1c4c64

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

doc/Language/operators.pod6

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ tightest to loosest:
1919
A | Level | Examples
2020
==+==================+==========
2121
N | Terms | 42 3.14 "eek" qq["foo"] $x :!verbose @$array
22-
L | Method postfix | .meth .+ .? .* .() .[] .{} .<> .«» .:: .= .^ .:
23-
N | Autoincrement | ++ --
22+
L | Method postfix | .meth .\+ .? .* .() .[] .{} .<> .«» .:: .= .^ .:
23+
N | Autoincrement | \+\+ --
2424
R | Exponentiation | **
25-
L | Symbolic unary | ! + - ~ ? | || +^ ~^ ?^ ^
25+
L | Symbolic unary | ! \+ - ~ ? \| \|\| \+^ ~^ ?^ ^
2626
L | Dotty infix | .= .
27-
L | Multiplicative | * / % %% +& +< +> ~& ~< ~> ?& div mod gcd lcm
28-
L | Additive | + - +| +^ ~| ~^ ?| ?^
27+
L | Multiplicative | * / % %% \+& \+< \+> ~& ~< ~> ?& div mod gcd lcm
28+
L | Additive | \+ - \+\| \+^ ~\| ~^ ?\| ?^
2929
L | Replication | x xx
3030
X | Concatenation | ~
3131
X | Junctive and | &
32-
X | Junctive or | | ^
32+
X | Junctive or | \| ^
3333
L | Named unary | temp let
3434
N | Structural infix | but does <=> leg cmp .. ..^ ^.. ^..^
3535
C | Chaining infix | != == < <= > >= eq ne lt le gt ge ~~ === eqv !eqv =~=
3636
X | Tight and | &&
37-
X | Tight or | || ^^ // min max
37+
X | Tight or | \|\| ^^ // min max
3838
R | Conditional | ?? !! ff fff
39-
R | Item assignment | = => += -= **= xx=
39+
R | Item assignment | = => \+= -= **= xx=
4040
L | Loose unary | so not
4141
X | Comma operator | , :
4242
X | List infix | Z minmax X X~ X* Xeqv ...
43-
R | List prefix | print push say die map substr ... [+] [*] any Z=
43+
R | List prefix | print push say die map substr ... [\+] [*] any Z=
4444
X | Loose and | and andthen notandthen
4545
X | Loose or | or xor orelse
4646
X | Sequencer | <==, ==>, <<==, ==>>
@@ -90,11 +90,11 @@ Operators can occur in several positions relative to a term:
9090
9191
=begin table
9292
93-
+term | prefix
94-
term1 + term2 | infix
95-
term++ | postfix
96-
(term) | circumfix
97-
term1[term2] | postcircumfix
93+
\+term | prefix
94+
term1 \+ term2 | infix
95+
term\+\+ | postfix
96+
(term) | circumfix
97+
term1[term2] | postcircumfix
9898
9999
=end table
100100

0 commit comments

Comments
 (0)