MooseX::MethodAttributes - code attribute introspection


MooseX-MethodAttributes documentation  | view source Contained in the MooseX-MethodAttributes distribution.

Index


NAME

Top

MooseX::MethodAttributes - code attribute introspection

SYNOPSIS

Top

    package MyClass;

    use Moose;
    use MooseX::MethodAttributes;

    sub foo : Bar Baz('corge') { ... }

    my $attrs = MyClass->meta->get_method('foo')->attributes; # ["Bar", "Baz('corge')"]

DESCRIPTION

Top

This module allows code attributes of methods to be introspected using Moose meta method objects.

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


MooseX-MethodAttributes documentation  | view source Contained in the MooseX-MethodAttributes distribution.