MooseX::AttributeIndexes::Meta::Role - MetaRole for AttributeIndexes.


MooseX-AttributeIndexes documentation Contained in the MooseX-AttributeIndexes distribution.

Index


Code Index:

NAME

Top

MooseX::AttributeIndexes::Meta::Role - MetaRole for AttributeIndexes.

VERSION

Top

version 1.0.1

METHODS

Top

composition_class_roles

returns MooseX::AttributeIndexes::Meta::Role::Composite

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


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__