From: Shawn M Moore Date: Sun, 25 May 2008 01:27:38 +0000 (+0000) Subject: MooseX::AttributeHelpers::Trait::Collection::Hash X-Git-Tag: 0.18_01~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5646987e1fa9e759acbcbf2503884a8c6918d052;hp=7b9312d83fff24a73de7c817aa50accb1d1e7cb2;p=gitmo%2FMooseX-AttributeHelpers.git MooseX::AttributeHelpers::Trait::Collection::Hash --- diff --git a/lib/MooseX/AttributeHelpers.pm b/lib/MooseX/AttributeHelpers.pm index 16951a3..6759523 100644 --- a/lib/MooseX/AttributeHelpers.pm +++ b/lib/MooseX/AttributeHelpers.pm @@ -11,6 +11,7 @@ use MooseX::AttributeHelpers::Trait::Number; use MooseX::AttributeHelpers::Trait::String; use MooseX::AttributeHelpers::Trait::Collection::List; use MooseX::AttributeHelpers::Trait::Collection::Array; +use MooseX::AttributeHelpers::Trait::Collection::Hash; use MooseX::AttributeHelpers::Counter; use MooseX::AttributeHelpers::Number; diff --git a/lib/MooseX/AttributeHelpers/Trait/Collection/Hash.pm b/lib/MooseX/AttributeHelpers/Trait/Collection/Hash.pm new file mode 100644 index 0000000..73070d3 --- /dev/null +++ b/lib/MooseX/AttributeHelpers/Trait/Collection/Hash.pm @@ -0,0 +1,101 @@ + +package MooseX::AttributeHelpers::Trait::Collection::Hash; +use Moose::Role; + +our $VERSION = '0.02'; +our $AUTHORITY = 'cpan:STEVAN'; + +use MooseX::AttributeHelpers::MethodProvider::Hash; + +with 'MooseX::AttributeHelpers::Trait::Collection'; + +has 'method_provider' => ( + is => 'ro', + isa => 'ClassName', + predicate => 'has_method_provider', + default => 'MooseX::AttributeHelpers::MethodProvider::Hash' +); + +sub helper_type { 'HashRef' } + +no Moose::Role; + +# register the alias ... +package # hide me from search.cpan.org + Moose::Meta::Attribute::Custom::Trait::Collection::Hash; +sub register_implementation { + 'MooseX::AttributeHelpers::Trait::Collection::Hash' +} + + +1; + +__END__ + +=pod + +=head1 NAME + +MooseX::AttributeHelpers::Collection::Hash + +=head1 SYNOPSIS + + package Stuff; + use Moose; + use MooseX::AttributeHelpers; + + has 'options' => ( + metaclass => 'Collection::Hash', + is => 'ro', + isa => 'HashRef[Str]', + default => sub { {} }, + provides => { + 'set' => 'set_option', + 'get' => 'get_option', + 'empty' => 'has_options', + 'count' => 'num_options', + 'delete' => 'delete_option', + } + ); + +=head1 DESCRIPTION + +This module provides an Hash attribute which provides a number of +hash-like operations. See L +for more details. + +=head1 METHODS + +=over 4 + +=item B + +=item B + +=item B + +=item B + +=back + +=head1 BUGS + +All complex software has bugs lurking in it, and this module is no +exception. If you find a bug please either email me, or add the bug +to cpan-RT. + +=head1 AUTHOR + +Stevan Little Estevan@iinteractive.comE + +=head1 COPYRIGHT AND LICENSE + +Copyright 2007-2008 by Infinity Interactive, Inc. + +L + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut +