How to Install and Uninstall perl-Class-Method-Modifiers.noarch Package on Fedora 36

Last updated: October 06,2024

1. Install "perl-Class-Method-Modifiers.noarch" package

In this section, we are going to explain the necessary steps to install perl-Class-Method-Modifiers.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install perl-Class-Method-Modifiers.noarch

2. Uninstall "perl-Class-Method-Modifiers.noarch" package

Here is a brief guide to show you how to uninstall perl-Class-Method-Modifiers.noarch on Fedora 36:

$ sudo dnf remove perl-Class-Method-Modifiers.noarch $ sudo dnf autoremove

3. Information about the perl-Class-Method-Modifiers.noarch package on Fedora 36

Last metadata expiration check: 4:48:55 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : perl-Class-Method-Modifiers
Version : 2.13
Release : 10.fc36
Architecture : noarch
Size : 44 k
Source : perl-Class-Method-Modifiers-2.13-10.fc36.src.rpm
Repository : fedora
Summary : Provides Moose-like method modifiers
URL : https://metacpan.org/release/Class-Method-Modifiers
License : GPL+ or Artistic
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.