We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff783b8 commit 39b51b1Copy full SHA for 39b51b1
lib/operators.pod
@@ -1103,9 +1103,16 @@ Short-circuits.
1103
1104
=head2 infix or
1105
1106
-Same as L<#infix ||>, except with looser precedence.
+Same as C<infix ||>, except with looser precedence.
1107
1108
Returns the first argument that evaluates to C<True> in boolean context,
1109
or otherwise the last argument. Short-circuits.
1110
1111
+=head2 infix orelse
1112
+
1113
+Same as C<infix //>, except with looser precedence.
1114
1115
+Returns the first undefined argument, or else the last argument.
1116
+Short-circuits.
1117
1118
=end pod
0 commit comments