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