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 201ee5d commit 86ccb03Copy full SHA for 86ccb03
pod/perlclass.pod
@@ -401,22 +401,6 @@ mechanism that makes all field initializer expressions appear within the same
401
CV on ADJUST blocks as well, merging them all into a single CV per class. This
402
will make it faster to invoke if a class has more than one of them.
403
404
-=item * More accessor generator attributes
405
-
406
-Attributes to request that other kinds of accessor methods be generated for
407
-fields. Likely C<:writer>.
408
409
- class X {
410
- field $name :writer;
411
- }
412
413
-Equivalent to
414
415
416
- field $name;
417
- method set_name ($new) { $name = $new; return $self; }
418
419
420
=item * Metaprogramming
421
422
An extension of the metaprogramming API (currently proposed by
0 commit comments