libclass-method-modifiers-perl

Perl module providing method modifiers
  https://metacpan.org/release/Class-Method-Modifiers
  0
  no reviews



Class::method::modifiers provides three modifiers: before, around, and after. the before and after modifiers are run just before and after the method they modify, but cannot really affect that original method. the remaining modifier, around, is run in place of the original method, with a hook to easily call the original method.