Moose::Meta::Attribute::Custom::Trait::Indexed - Registration Node for the Indexed Trait.


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

Index


Code Index:

NAME

Top

Moose::Meta::Attribute::Custom::Trait::Indexed - Registration Node for the Indexed Trait.

VERSION

Top

version 1.0.1

METHODS

Top

register_implementation

Associates the Indexed trait with MX::AI

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


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

use strict;
use warnings;
package Moose::Meta::Attribute::Custom::Trait::Indexed;
BEGIN {
  $Moose::Meta::Attribute::Custom::Trait::Indexed::VERSION = '1.0.1';
}

# ABSTRACT: Registration Node for the Indexed Trait.
#
# $Id:$


sub register_implementation {
  'MooseX::AttributeIndexes::Meta::Attribute::Trait::Indexed';
}

1;


__END__