| MooseX-AttributeIndexes documentation | Contained in the MooseX-AttributeIndexes distribution. |
MooseX::AttributeIndexes::Provider - A role that advertises an object is capable of providing metadata.
version 1.0.1
use Moose;
with 'MooseX::AttributeIndexes::Provider';
sub attribute_indexes {
return {
foo => 'bar',
};
}
This code is alpha, and its interface is prone to change.
A sub that returns a hashref of index-name=>index-value entries for the given object
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::Provider; BEGIN { $MooseX::AttributeIndexes::Provider::VERSION = '1.0.1'; } # ABSTRACT: A role that advertises an object is capable of providing metadata. # $Id:$ use Moose::Role; use namespace::autoclean; requires 'attribute_indexes'; 1; __END__