Name: | perl-Class-Method-Modifiers |
---|---|
Version: | 2.13 |
Release: | 8.el9 |
Architecture: | noarch |
Group: | Unspecified |
Size: | 104661 |
License: | GPL+ or Artistic |
RPM: | perl-Class-Method-Modifiers-2.13-8.el9.noarch.rpm |
Source RPM: | perl-Class-Method-Modifiers-2.13-8.el9.src.rpm |
Build Date: | Tue Jan 11 2022 |
Build Host: | build-ol9-x86_64.oracle.com |
Vendor: | Oracle America |
URL: | https://metacpan.org/release/Class-Method-Modifiers |
Summary: | Provides Moose-like method modifiers |
Description: | Method modifiers are a powerful 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. |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags Related: rhbz#1991688
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
- Perl 5.32 re-rebuild of bootstrapped packages
- Perl 5.32 rebuild
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
- Update to 2.13 - Bypass prototypes when testing for lvalue attribute - Fixed a class name in tests to avoid conflicting with a core module