foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / List.pm
1
2 package Moose::Autobox::List;
3 use Moose::Role 'with', 'requires';
4
5 our $VERSION = '0.01';
6
7 with 'Moose::Autobox::Value';
8
9 requires qw/
10     length 
11     join     
12     grep map sort
13     reverse
14     reduce
15     zip
16 /;
17
18
19 1;