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 d893540 commit 0209f74Copy full SHA for 0209f74
pod/perldelta.pod
@@ -369,6 +369,26 @@ manager will later use a regex to expand these into links.
369
370
=item *
371
372
+Compound assignment operators return lvalues that can be further modified:
373
+
374
+ ($x &= $y) += $z;
375
+ # Equivalent to:
376
+ # $x &= $y;
377
+ # $x += $z;
378
379
+However, the separate numeric/string bitwise operators provided by L<the
380
+C<bitwise> feature|feature/The 'bitwise' feature>, C<< &= ^= |= &.= ^.= |.= >>,
381
+did not do so:
382
383
+ use feature qw(bitwise);
384
385
+ # Used to die:
386
+ # Can't modify numeric bitwise and (&) in addition (+) at ...
387
388
+This has been corrected. [GH #22412]
389
390
+=item *
391
392
XXX
393
394
=back
0 commit comments