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

NAME

Mic::HashImpl

SYNOPSIS

    package Example::Construction::Acme::Set_v1;

    use Mic::HashImpl
        has => {
            SET => {
                default => sub { {} },
                init_arg => 'items',
            }
        },
    ;

    sub has {
        my ($self, $e) = @_;
        exists $self->{$SET}{$e};
    }

    sub add {
        my ($self, $e) = @_;
        ++$self->{$SET}{$e};
    }

    1;

DESCRIPTION

Mic::HashImpl is an alias of Mic::Implementation, provided for convenience.