1 package Moose::Meta::Method::Accessor::Native::Hash::delete;
6 our $VERSION = '1.9900';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
12 with 'Moose::Meta::Method::Accessor::Native::Hash::Writer' => {
15 _inline_optimized_set_new_value
21 sub _adds_members { 0 }
23 sub _potential_value {
25 my ($slot_access) = @_;
28 . 'my %potential = %{ (' . $slot_access . ') }; '
29 . '@return = delete @potential{@_}; '
34 sub _inline_optimized_set_new_value {
36 my ($inv, $new, $slot_access) = @_;
38 return '@return = delete @{ (' . $slot_access . ') }{@_};';
43 my ($slot_access) = @_;
45 return 'wantarray ? @return : $return[-1]';