foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Indexed.pm
CommitLineData
6cf5bcf2 1package Moose::Autobox::Indexed;
2use Moose::Role 'requires';
3
4our $VERSION = '0.01';
5
31d40d73 6requires qw/
7 at
8 put
9 exists
10 keys
11 values
12 kv
13/;
6cf5bcf2 14
31d40d73 151;
16
17__END__
18
19=pod
20
21=head1 NAME
22
23Moose::Autobox::Indexed - the Indexed role
24
25=head1 SYNOPOSIS
26
27 use Moose::Autobox;
28 use autobox;
29
30=head1 DESCRIPTION
31
32=head1 BUGS
33
34All complex software has bugs lurking in it, and this module is no
35exception. If you find a bug please either email me, or add the bug
36to cpan-RT.
37
38=head1 AUTHOR
39
40Stevan Little E<lt>stevan@iinteractive.comE<gt>
41
42=head1 COPYRIGHT AND LICENSE
43
44Copyright 2006 by Infinity Interactive, Inc.
45
46L<http://www.iinteractive.com>
47
48This library is free software; you can redistribute it and/or modify
49it under the same terms as Perl itself.
50
51=cut