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 2c08353 commit 7e3cef9Copy full SHA for 7e3cef9
doc/Language/operators.pod6
@@ -1322,6 +1322,15 @@ and then performs a numeric bitwise right shift on the bits of the buffer.
1322
1323
Please note that this has not yet been implemented.
1324
1325
+=head2 infix C«?&»
1326
+
1327
+ multi sub infix:<?&>(Mu $x = Bool::True)
1328
+ multi sub infix:<?&>(Mu \a, Mu \b)
1329
1330
+X<Boolean logical AND operator>. Coerces the argument(s) to L<Bool|/type/Bool>
1331
+and performs logical AND on them: it will return True if and only if both
1332
+arguments are true. It returns identity on a single argument.
1333
1334
=head2 infix C«gcd»
1335
1336
multi sub infix:<gcd>($a, $b --> Int:D)
0 commit comments