Acme-Mitey-Cards
view release on metacpan or search on metacpan
lib/Acme/Mitey/Cards/Deck.pm.mite.pm view on Meta::CPAN
sub original_cards {
@_ == 1
or croak('Reader "original_cards" usage: $self->original_cards()');
(
exists( $_[0]{"original_cards"} ) ? $_[0]{"original_cards"} : (
$_[0]{"original_cards"} = do {
my $default_value = $_[0]->_build_original_cards;
do {
package Acme::Mitey::Cards::Mite;
( ref($default_value) eq 'ARRAY' ) and do {
my $ok = 1;
for my $i ( @{$default_value} ) {
( $ok = 0, last )
unless (
do {
use Scalar::Util ();
Scalar::Util::blessed($i)
and
$i->isa(q[Acme::Mitey::Cards::Card]);
}
);
};
$ok;
}
}
or croak( "Type check failed in default: %s should be %s",
"original_cards", "CardArray" );
$default_value;
}
)
);
}
# Accessors for reverse
# has declaration, file lib/Acme/Mitey/Cards/Deck.pm, line 17
if ($__XS) {
Class::XSAccessor->import(
chained => 1,
"getters" => { "reverse" => "reverse" },
);
}
else {
*reverse = sub {
@_ == 1 or croak('Reader "reverse" usage: $self->reverse()');
$_[0]{"reverse"};
};
}
# See UNIVERSAL
sub DOES {
my ( $self, $role ) = @_;
our %DOES;
return $DOES{$role} if exists $DOES{$role};
return 1 if $role eq __PACKAGE__;
if ( $INC{'Moose/Util.pm'}
and my $meta = Moose::Util::find_meta( ref $self or $self ) )
{
$meta->can('does_role') and $meta->does_role($role) and return 1;
}
return $self->SUPER::DOES($role);
}
# Alias for Moose/Moo-compatibility
sub does {
shift->DOES(@_);
}
# Method signatures
our %SIGNATURE_FOR;
$SIGNATURE_FOR{"deal_hand"} = sub {
my $__NEXT__ = shift;
my ( %out, %in, %tmp, $tmp, $dtmp, @head );
@_ == 2 && ( ref( $_[1] ) eq 'HASH' )
or @_ % 2 == 1 && @_ >= 1
or
croak( "Wrong number of parameters in signature for %s: got %d, %s",
"deal_hand", scalar(@_), "that does not seem right" );
@head = splice( @_, 0, 1 );
# Parameter invocant (type: Defined)
( defined( $head[0] ) )
or croak(
"Type check failed in signature for deal_hand: %s should be %s",
"\$_[0]", "Defined" );
%in = ( @_ == 1 and ( ref( $_[0] ) eq 'HASH' ) ) ? %{ $_[0] } : @_;
# Parameter count (type: Int)
$dtmp = exists( $in{"count"} ) ? $in{"count"} : "7";
(
do {
my $tmp = $dtmp;
defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/;
}
)
or croak(
"Type check failed in signature for deal_hand: %s should be %s",
"\$_{\"count\"}", "Int" );
$out{"count"} = $dtmp;
delete( $in{"count"} );
my $SLURPY = \%in;
# Parameter args_for_hand (type: Slurpy[HashRef])
( ( ref($SLURPY) eq 'HASH' ) )
or croak(
"Type check failed in signature for deal_hand: %s should be %s",
"\$SLURPY", "HashRef" );
$out{"args_for_hand"} = $SLURPY;
do {
@_ = (
@head,
bless(
\%out,
"Acme::Mitey::Cards::Deck::__NAMED_ARGUMENTS__::deal_hand"
( run in 1.190 second using v1.01-cache-2.11-cpan-5e09290becf )