foo
[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 METHODS
33
34 =over 4
35
36 =item B<meta>
37
38 =back
39
40 =head1 REQUIRED METHODS
41
42 =over 4
43
44 =item B<at>
45
46 =item B<put>
47
48 =item B<exists>
49
50 =item B<keys>
51
52 =item B<values>
53
54 =item B<kv>
55
56 =back
57
58 =head1 BUGS
59
60 All complex software has bugs lurking in it, and this module is no 
61 exception. If you find a bug please either email me, or add the bug
62 to cpan-RT.
63
64 =head1 AUTHOR
65
66 Stevan Little E<lt>stevan@iinteractive.comE<gt>
67
68 =head1 COPYRIGHT AND LICENSE
69
70 Copyright 2006 by Infinity Interactive, Inc.
71
72 L<http://www.iinteractive.com>
73
74 This library is free software; you can redistribute it and/or modify
75 it under the same terms as Perl itself.
76
77 =cut