Skip to content

Commit

Permalink
Adds ⁇ ‼ to the index
Browse files Browse the repository at this point in the history
And rephrases a bit the doc. Basically I was checking to close #1851,
and I don't like to close without an actual change. So...
  • Loading branch information
JJ committed Apr 28, 2018
1 parent d779c58 commit 5a656e4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions doc/Language/operators.pod6
Expand Up @@ -1922,13 +1922,11 @@ my %loser = points => 20, misses => 10;
=head1 Conditional Operator Precedence
=head2 infix C<?? !!>
=head2 infix C<?? !!> X<|⁇ ‼>
Also called X<Ternary operator|?? !!> or Conditional operator.
Also called X<Ternary operator|?? !!> or conditional operator.
C<$condition ?? $true !! $false> evaluates and returns the expression from the
C<$true> branch if C<$condition> is a true value. Otherwise it evaluates and
returns the C<$false> branch.
C<$condition ?? $true !! $false> evaluates C<$condition> and returns the expression right behind ??, in this case C<$true> if it is C<True>, otherwise evaluates and returns the expression behind !!, C<$false> in this case.
=head2 infix C«ff»
Expand Down

0 comments on commit 5a656e4

Please sign in to comment.