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/length grep map join reverse sort/;
10
11 1;