add hash slices
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Indexed.pm
index 6c3a2de..feb0174 100644 (file)
@@ -3,14 +3,13 @@ use Moose::Role 'requires';
 
 our $VERSION = '0.01';
 
-requires qw/
-    at
-    put
-    exists 
-    keys 
-    values 
-    kv
-/;
+requires 'at';
+requires 'put';
+requires 'exists'; 
+requires 'keys';
+requires 'values'; 
+requires 'kv';
+requires 'slice';
 
 1;
 
@@ -22,11 +21,6 @@ __END__
 
 Moose::Autobox::Indexed - the Indexed role
 
-=head1 SYNOPOSIS
-
-  use Moose::Autobox;
-  use autobox;
-
 =head1 DESCRIPTION
 
 This is a role to describes an collection whose values can be 
@@ -74,11 +68,11 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006 by Infinity Interactive, Inc.
+Copyright 2006-2008 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
-=cut
\ No newline at end of file
+=cut