File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -1316,6 +1316,12 @@ X<Numeric inequality operator>.
1316
1316
Coerces both arguments to L < Numeric > (if necessary), and returns C < True > if they are
1317
1317
distinct.
1318
1318
1319
+ = head2 infix C « ≠ »
1320
+
1321
+ Numeric inequality operator.
1322
+
1323
+ Equivalent to L « != » , at codepoint U+2260 (NOT EQUAL TO).
1324
+
1319
1325
= head2 infix C « < »
1320
1326
1321
1327
multi sub infix:«<»(Int:D, Int:D)
@@ -1338,6 +1344,11 @@ X<Numeric less than or equal to operator>.
1338
1344
Coerces both arguments to L < Real > (if necessary), and returns C < True > if the first argument
1339
1345
is smaller than or equal to the second.
1340
1346
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).
1341
1352
1342
1353
= head2 infix C « > »
1343
1354
@@ -1361,6 +1372,12 @@ X<Numeric greater than or equal to operator>.
1361
1372
Coerces both arguments to L < Real > (if necessary), and returns C < True > if
1362
1373
the first argument is larger than or equal to the second.
1363
1374
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
+
1364
1381
= head2 infix C « eq »
1365
1382
1366
1383
multi sub infix:<eq>(Any, Any)
Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ equivalents] that have a special meaning in Perl 6.
55
55
» | U+00BB | >> | v6.c | as part of «» or .» or regex right word boundary
56
56
× | U+00D7 | * | v6.c |
57
57
÷ | U+00F7 | / | v6.c |
58
+ ≤ | U+2264 | <= | v6.c |
59
+ ≥ | U+2265 | >= | v6.c |
60
+ ≠ | U+2260 | != | v6.c |
58
61
− | U+2212 | - | v6.c |
59
62
∘ | U+2218 | o | v6.c |
60
63
≅ | U+2245 | =~= | v6.c |
You can’t perform that action at this time.
0 commit comments