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