From: Shawn M Moore Date: Sun, 25 May 2008 01:23:35 +0000 (+0000) Subject: MooseX::AttributeHepers::Trait::Collection::Array X-Git-Tag: 0.18_01~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7b9312d83fff24a73de7c817aa50accb1d1e7cb2;p=gitmo%2FMooseX-AttributeHelpers.git MooseX::AttributeHepers::Trait::Collection::Array --- diff --git a/lib/MooseX/AttributeHelpers.pm b/lib/MooseX/AttributeHelpers.pm index f41ea90..16951a3 100644 --- a/lib/MooseX/AttributeHelpers.pm +++ b/lib/MooseX/AttributeHelpers.pm @@ -10,6 +10,7 @@ use MooseX::AttributeHelpers::Trait::Counter; 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::Counter; use MooseX::AttributeHelpers::Number; diff --git a/lib/MooseX/AttributeHelpers/Trait/Collection/Array.pm b/lib/MooseX/AttributeHelpers/Trait/Collection/Array.pm new file mode 100644 index 0000000..d1c57e0 --- /dev/null +++ b/lib/MooseX/AttributeHelpers/Trait/Collection/Array.pm @@ -0,0 +1,98 @@ + +package MooseX::AttributeHelpers::Trait::Collection::Array; +use Moose::Role; + +our $VERSION = '0.01'; +our $AUTHORITY = 'cpan:STEVAN'; + +use MooseX::AttributeHelpers::MethodProvider::Array; + +with 'MooseX::AttributeHelpers::Trait::Collection'; + +has 'method_provider' => ( + is => 'ro', + isa => 'ClassName', + predicate => 'has_method_provider', + default => 'MooseX::AttributeHelpers::MethodProvider::Array' +); + +sub helper_type { 'ArrayRef' } + +no Moose::Role; + +# register the alias ... +package # hide me from search.cpan.org + Moose::Meta::Attribute::Custom::Trait::Collection::Array; +sub register_implementation { + 'MooseX::AttributeHelpers::Trait::Collection::Array' +} + + +1; + +__END__ + +=pod + +=head1 NAME + +MooseX::AttributeHelpers::Collection::Array + +=head1 SYNOPSIS + + package Stuff; + use Moose; + use MooseX::AttributeHelpers; + + has 'options' => ( + metaclass => 'Collection::Array', + is => 'ro', + isa => 'ArrayRef[Int]', + default => sub { [] }, + provides => { + 'push' => 'add_options', + 'pop' => 'remove_last_option', + } + ); + +=head1 DESCRIPTION + +This module provides an Array attribute which provides a number of +array 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 +