The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

NAME

MouseX::AttributeHelpers::Collection::List

SYNOPSIS

package MyClass;
use Mouse;
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.

SEE ALSO

MouseX::AttributeHelpers, MouseX::AttributeHelpers::Base