Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions doc/Language/operators.pod6
Original file line number Diff line number Diff line change
Expand Up @@ -1316,6 +1316,12 @@ X<Numeric inequality operator>.
Coerces both arguments to L<Numeric> (if necessary), and returns C<True> if they are
distinct.

=head2 infix C«≠»

Numeric inequality operator.

Equivalent to L«!=», at codepoint U+2260 (NOT EQUAL TO).

=head2 infix C«<»

multi sub infix:«<»(Int:D, Int:D)
Expand All @@ -1338,6 +1344,11 @@ X<Numeric less than or equal to operator>.
Coerces both arguments to L<Real> (if necessary), and returns C<True> if the first argument
is smaller than or equal to the second.

=head2 infix C«≤»

Numeric less than or equal to operator.

Equivalent to L«<=», at codepoint U+2264 (LESS-THAN OR EQUAL TO).

=head2 infix C«>»

Expand All @@ -1361,6 +1372,12 @@ X<Numeric greater than or equal to operator>.
Coerces both arguments to L<Real> (if necessary), and returns C<True> if
the first argument is larger than or equal to the second.

=head2 infix C«≥»

Numeric greater than or equal to operator.

Equivalent to L«>=», at codepoint U+2265 (GREATER-THAN OR EQUAL TO).

=head2 infix C«eq»

multi sub infix:<eq>(Any, Any)
Expand Down
3 changes: 3 additions & 0 deletions doc/Language/unicode_texas.pod6
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ equivalents] that have a special meaning in Perl 6.
» | U+00BB | >> | v6.c | as part of «» or .» or regex right word boundary
× | U+00D7 | * | v6.c |
÷ | U+00F7 | / | v6.c |
≤ | U+2264 | <= | v6.c |
≥ | U+2265 | >= | v6.c |
≠ | U+2260 | != | v6.c |
− | U+2212 | - | v6.c |
∘ | U+2218 | o | v6.c |
≅ | U+2245 | =~= | v6.c |
Expand Down