http://www.perlmonks.org?node_id=435890


in reply to Re^5: Perl Idioms Explained - keys %{{map{$_=>1}@list}}
in thread Perl Idioms Explained - keys %{{map{$_=>1}@list}}

The former interprets the slice as a scalar list, and undefs the last element only. The reason all the keys get defined is that it puts the slice in lvalue context, and autovivification occurs. The latter is equivalent to assigning a list to a list.
I think I see your point. Would you then have expected, in nature, the following to be equivalent:
$h{c} = undef; # 1 undef $h{c}; # 2 undef @h{qw|a b c|}; # 3
with no. 3 taking the hash slice as a plain list, and that in a scalar context?

Replies are listed 'Best First'.
Re^7: Perl Idioms Explained - keys %{{map{$_=>1}@list}}
by Roy Johnson (Monsignor) on Mar 02, 2005 at 16:11 UTC
    I would not have expected #3's behavior. Would you? I think it merits an "undef is not a listop" warning. The correct way to undef the values is: @h{qw|a b c|} = (); The correct way to autovivify them but leave them unmodified if they already exist is () = \@h{qw(a b c)};

    Caution: Contents may have been coded under pressure.