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
9requires qw/length grep map join reverse sort/;
10
111;