MouseX::AttributeHelpers::Collection::Bag - MouseX::AttributeHelpers::Collection::Bag documentation


MouseX-AttributeHelpers documentation  | view source Contained in the MouseX-AttributeHelpers distribution.

Index


NAME

Top

MouseX::AttributeHelpers::Collection::Bag

SYNOPSIS

Top

    package MyClass;
    use Mouse;
    use MouseX::AttributeHelpers;

    has 'word_histogram' => (
        metaclass => 'Collection::Bag',
        is        => 'rw',
        isa       => 'Bag', # exported
        default   => sub { +{} },
        provides  => {
            add    => 'add_word',
            get    => 'get_count_for',            
            empty  => 'has_any_words',
            count  => 'num_words',
            delete => 'delete_word',
        },
    );

DESCRIPTION

Top

This module provides an Hash attribute which provides a number of hash-like operations.

PROVIDERS

Top

This module also consumes the ImmutableHash method providers. See also MouseX::AttributeHelpers::Collection::ImmutableHash.

add

delete

reset

METHODS

Top

method_constructors

helper_type

helper_default

AUTHOR

Top

NAKAGAWA Masaki <masaki@cpan.org>

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Top

MouseX::AttributeHelpers, MouseX::AttributeHelpers::Base, MouseX::AttributeHelpers::Collection::ImmutableHash


MouseX-AttributeHelpers documentation  | view source Contained in the MouseX-AttributeHelpers distribution.