Skip to content

Commit 180aaeb

Browse files
committed
Docs for ≤ ≥ ≠ unicode ops
1 parent 35e6998 commit 180aaeb

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

doc/Language/operators.pod6

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1316,6 +1316,12 @@ X<Numeric inequality operator>.
13161316
Coerces both arguments to L<Numeric> (if necessary), and returns C<True> if they are
13171317
distinct.
13181318
1319+
=head2 infix C«»
1320+
1321+
Numeric inequality operator.
1322+
1323+
Equivalent to L«!=», at codepoint U+2260 (NOT EQUAL TO).
1324+
13191325
=head2 infix C«<»
13201326
13211327
multi sub infix:«<»(Int:D, Int:D)
@@ -1338,6 +1344,11 @@ X<Numeric less than or equal to operator>.
13381344
Coerces both arguments to L<Real> (if necessary), and returns C<True> if the first argument
13391345
is smaller than or equal to the second.
13401346
1347+
=head2 infix C«»
1348+
1349+
Numeric less than or equal to operator.
1350+
1351+
Equivalent to L«<=», at codepoint U+2264 (LESS-THAN OR EQUAL TO).
13411352
13421353
=head2 infix C«>»
13431354
@@ -1361,6 +1372,12 @@ X<Numeric greater than or equal to operator>.
13611372
Coerces both arguments to L<Real> (if necessary), and returns C<True> if
13621373
the first argument is larger than or equal to the second.
13631374
1375+
=head2 infix C«»
1376+
1377+
Numeric greater than or equal to operator.
1378+
1379+
Equivalent to L«>=», at codepoint U+2265 (GREATER-THAN OR EQUAL TO).
1380+
13641381
=head2 infix C«eq»
13651382
13661383
multi sub infix:<eq>(Any, Any)

doc/Language/unicode_texas.pod6

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ equivalents] that have a special meaning in Perl 6.
5555
» | U+00BB | >> | v6.c | as part of «» or .» or regex right word boundary
5656
× | U+00D7 | * | v6.c |
5757
÷ | U+00F7 | / | v6.c |
58+
≤ | U+2264 | <= | v6.c |
59+
≥ | U+2265 | >= | v6.c |
60+
≠ | U+2260 | != | v6.c |
5861
− | U+2212 | - | v6.c |
5962
∘ | U+2218 | o | v6.c |
6063
≅ | U+2245 | =~= | v6.c |

0 commit comments

Comments
 (0)