NAME
Mic::Impl
SYNOPSIS
package Example::Construction::Acme::Counter;
use Mic::Impl
has => {
COUNT => { init_arg => 'start' },
},
;
sub next {
my ($self) = @_;
$self->[ $COUNT ]++;
}
1;
DESCRIPTION
Mic::Impl is an alias of Mic::ArrayImpl, provided for convenience.