| MooseX-AttributeIndexes documentation | Contained in the MooseX-AttributeIndexes distribution. |
MooseX::AttributeIndexes::Meta::Role - MetaRole for AttributeIndexes.
version 1.0.1
returns MooseX::AttributeIndexes::Meta::Role::Composite
This software is copyright (c) 2011 by Kent Fredric.
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-AttributeIndexes documentation | Contained in the MooseX-AttributeIndexes distribution. |
use strict; use warnings; package MooseX::AttributeIndexes::Meta::Role; BEGIN { $MooseX::AttributeIndexes::Meta::Role::VERSION = '1.0.1'; } # ABSTRACT: MetaRole for AttributeIndexes. use Moose::Role; sub composition_class_roles { 'MooseX::AttributeIndexes::Meta::Role::Composite' } no Moose::Role; 1; __END__