The following code defines two classes ( DeckAand DeckB) that differ only in whether they use the functions that come with MooseX :: AttributeHelpers . The getters created by Moose for DeckBare not what I expected. Is this a mistake or I don’t understand how MooseX :: AttributeHelpers and MooseX :: FollowPBP should interact?
My workaround for this was to avoid using an argument isin such situations and instead declare readerand writeras needed.
use strict;
use warnings;
my %moose_args = (
isa => 'ArrayRef[Str]',
is => 'ro',
default => sub {[]},
);
my %moose_attr_helper_args = (
metaclass => 'Collection::Array',
provides => {
elements => 'get_all_cards',
},
);
package DeckA;
use Moose;
use MooseX::FollowPBP;
use MooseX::AttributeHelpers;
has 'cards' => (%moose_args);
package DeckB;
use Moose;
use MooseX::FollowPBP;
use MooseX::AttributeHelpers;
has 'cards' => (%moose_args, %moose_attr_helper_args);
package main;
for my $class (qw(DeckA DeckB)){
my $deck = $class->new;
print "\n$class\n";
for my $method ( qw(cards get_cards get_all_cards) ){
print "$method: ", $deck->can($method) ? 'yes' : 'no', "\n";
}
}
Output:
DeckA
cards: no
get_cards: yes
get_all_cards: no
DeckB
cards: yes
get_cards: no
get_all_cards: yes
source
share