NAME
MouseX::AttributeHelpers::Collection::List
SYNOPSIS
package MyClass;
use Mouse;
use MouseX::AttributeHelpers;
has 'options' => (
metaclass => 'Collection::List',
is => 'rw',
isa => 'ArrayRef',
default => sub { [] },
provides => {
count => 'num_options',
empty => 'has_options',
map => 'map_options',
grep => 'filter_options',
elements => 'all_options',
},
);
DESCRIPTION
This module provides an List attribute which provides a number of list operations.
PROVIDERS
count
empty
find
map
grep
elements
join
get
first
last
METHODS
method_constructors
helper_type
AUTHOR
NAKAGAWA Masaki <masaki@cpan.org>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.