| MooseX-Role-WithOverloading documentation | Contained in the MooseX-Role-WithOverloading distribution. |
MooseX::Role::WithOverloading::Meta::Role - Roles which support overloading
This software is copyright (c) 2011 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| MooseX-Role-WithOverloading documentation | Contained in the MooseX-Role-WithOverloading distribution. |
package MooseX::Role::WithOverloading::Meta::Role; BEGIN { $MooseX::Role::WithOverloading::Meta::Role::AUTHORITY = 'cpan:FLORA'; } BEGIN { $MooseX::Role::WithOverloading::Meta::Role::VERSION = '0.09'; } # ABSTRACT: Roles which support overloading use Moose 0.94 (); use Moose::Role; use aliased 'MooseX::Role::WithOverloading::Meta::Role::Composite', 'CompositionRole'; use namespace::autoclean; around composition_class_roles => sub { my ($orig, $self) = @_; return $self->$orig, CompositionRole; }; 1; __END__