The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.