Skip to content

Commit 6f40514

Browse files
committed
Merge branch 'master' of github.com:perl6/tablets
2 parents 11b52a7 + e648d95 commit 6f40514

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/appendix-b-grouped.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Variables
66
=========
77

8-
Sigils
8+
9+
# [Sigils](#nav-top)
910
------
1011

1112
All variables in Perl begin with a [sigil](appendix-g-glossary#sigil).
@@ -26,7 +27,7 @@ The first 4 can also be used as prefix operators, called
2627
but there are much more different contexts then 4.
2728

2829

29-
Twigils
30+
# [Twigils](#nav-top)
3031
-------
3132

3233
Twigil is short for secondary sigil. They follow after a primary sigil and mark special namespaces or variables with special meanings and properties.
@@ -44,7 +45,7 @@ Twigil is short for secondary sigil. They follow after a primary sigil and mark
4445
-------------------------------------------------- ------------------------------------------------------------
4546

4647

47-
Special Variables
48+
# [Special Variables](#nav-top)
4849
-----------------
4950

5051
---------------------------------------- ------------------------
@@ -562,7 +563,11 @@ have an equivalent [*Unicode*](appendix-g-glossary#unicode) version
562563
Set Op UTF CPNR Short Explanation
563564
---------------------------------------- ----- ---- ----- -----------------------------------------------
564565
(elem) ∈ 2208   True if left operand is element of the right set
565-
(cont) ∋ 220B %nbsp; True if right operand is element of the left set
566+
(cont) ∋ 220B   True if right operand is element of the left set
567+
(<) ⊂ 2282 strict True if all elements left are in right and right set has more
568+
(<=) ⊆ 2286 subset True if all elements left are in right set
569+
(>) ⊃ 2283 strict True if all elements right are in left set and left has more (strict superset)
570+
(>=) ⊇ 2287 supers True if all elements right are in left set
566571
[(&)](appendix-a-index#ampersand-set-op) ∩ 2229 AND Set of elements, which are in both sets
567572
[(|)](appendix-a-index#pipe-set-op) ∪ 222A OR Set of elements, which are in one or both sets
568573
[(\^)](appendix-a-index#caret-set-op) ⊖ 2296 XOR Set of elements, which are only in one of both sets

0 commit comments

Comments
 (0)