|
NAMEMouseX::AttributeHelpers::Collection::Hash SYNOPSIS package MyClass;
use Mouse;
use MouseX::AttributeHelpers;
has 'options' => (
metaclass => 'Collection::Hash',
is => 'rw',
isa => 'HashRef',
default => sub { +{} },
provides => {
set => 'set_option',
get => 'get_option',
empty => 'has_options',
count => 'num_options',
delete => 'delete_option',
},
);
DESCRIPTIONThis module provides an Hash attribute which provides a number of hash-like operations. PROVIDERSThis module also consumes the ImmutableHash method providers. See also MouseX::AttributeHelpers::Collection::ImmutableHash. setcleardeleteMETHODSmethod_constructorshelper_typeAUTHORNAKAGAWA Masaki <masaki@cpan.org> LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOMouseX::AttributeHelpers, MouseX::AttributeHelpers::Base, MouseX::AttributeHelpers::Collection::ImmutableHash
|