Method modifiers are a convenient feature from the CLOS (Common Lisp Object System) world.
In its most basic form, a method modifier is just a method that calls '$self->SUPER::foo(@_)'. I for one have trouble remembering that exact invocation, so my classes seldom re-dispatch to their base classes. Very bad!
'Class::Method::Modifiers' provides three modifiers: 'before', 'around', and 'after'. 'before' and 'after' are run just before and after the method they modify, but can not really affect that original method. 'around' is run in place of the original method, with a hook to easily call that original method. See the 'MODIFIERS' section for more details on how the particular modifiers work.
One clear benefit of using 'Class::Method::Modifiers' is that you can define multiple modifiers in a single namespace. These separate modifiers don't need to know about each other. This makes top-down design easy. Have a base class that provides the skeleton methods of each operation, and have plugins modify those methods to flesh out the specifics.
Parent classes need not know about 'Class::Method::Modifiers'. This means you should be able to modify methods in any subclass. See Term::VT102::ZeroBased for an example of subclassing with 'Class::Method::Modifiers'.
In short, 'Class::Method::Modifiers' solves the problem of making sure you call '$self->SUPER::foo(@_)', and provides a cleaner interface for it.
As of version 1.00, 'Class::Method::Modifiers' is faster in some cases than Moose. See 'benchmark/method_modifiers.pl' in the Moose distribution.
'Class::Method::Modifiers' also provides an additional "modifier" type, 'fresh'; see below.
Package Version | Update ID | Released | Package Hub Version | Platforms | Subpackages |
---|---|---|---|---|---|
2.12-bp156.3.1 info | GA Release | 2023-07-22 | 15 SP6 |
|
|
2.12-bp155.2.12 info | GA Release | 2023-05-17 | 15 SP5 |
|
|
2.12-bp154.1.69 info | GA Release | 2022-05-09 | 15 SP4 |
|
|
2.12-bp153.2.2.1 info | openSUSE-2021-1216 | 2021-09-01 | 15 SP3 Update |
|
|
2.12-bp153.1.22 info | GA Release | 2021-03-05 | 15 SP3 |
|
|
2.12-bp152.3.20 info | GA Release | 2020-04-16 | 15 SP2 |
|
|
2.12-bp151.3.1 info | GA Release | 2019-07-16 | 15 SP1 |
|
|
2.12-bp151.2.15 info | GA Release | 2019-05-18 | 15 SP1 |
|
|
2.12-bp150.2.4 info | GA Release | 2018-07-30 | 15 |
|
|