logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

MooseX::MethodAttributes::Role::Meta::Class - metaclass role for storing code attributes

Authors

       •   Florian Ragwitz <rafl@debian.org>

       •   Tomas Doran <bobtfish@bobtfish.net>

Methods

get_method_with_attributes_list
       Gets the list of meta methods for local methods of this class that have attributes in the order they have
       been registered.

   get_all_methods_with_attributes
       Gets the list of meta methods of local and inherited methods of this class, that have attributes. Base
       class methods come before subclass methods. Methods of one class have the order they have been declared
       in.

   get_nearest_methods_with_attributes
       The same as get_all_methods_with_attributes, except that methods from parent classes are not included if
       there is an attribute-less method in a child class.

       For example, given:

           package BaseClass;

           sub foo : Attr {}

           sub bar : Attr {}

           package SubClass;
           use base qw/BaseClass/;

           sub foo {}

           after bar => sub {}

       "SubClass->meta->get_all_methods_with_attributes" will return "BaseClass->meta->get_method('foo')" for
       the above example, but this method will not, and will return the wrapped bar method, whereas
       "get_all_methods_with_attributes" will return the original method.

Name

       MooseX::MethodAttributes::Role::Meta::Class - metaclass role for storing code attributes

Support

       Bugs may be submitted through the RT bug tracker
       <https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-MethodAttributes> (or
       bug-MooseX-MethodAttributes@rt.cpan.org <mailto:bug-MooseX-MethodAttributes@rt.cpan.org>).

       There is also a mailing list available for users of this distribution, at
       <http://lists.perl.org/list/moose.html>.

       There is also an irc channel available for users of this distribution, at "#moose" on "irc.perl.org"
       <irc://irc.perl.org/#moose>.

Version

       version 0.32

See Also