Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Another posible initializer

by dvergin (Monsignor)
on Dec 11, 2001 at 07:47 UTC ( #130853=note: print w/replies, xml ) Need Help??


in reply to Another posible initializer
in thread Testing array of hash values

Actually,
my %p; @p{'eyes', 'hair', 'etc'} = ();
is a common idiom for using a hash slice to load a hash with keys and undef values.

Replies are listed 'Best First'.
Re: Re: Another posible initializer
by Fletch (Bishop) on Dec 11, 2001 at 08:18 UTC

    You're quite right. I was thinking more of:

    my %p; @p{ qw( a b c ) } = (1)x3;
    where you're initializing to a given value (like 1 or "on") rather than undef.

      Yes indeedy. So then, to complete this exercise and return to your very legitimate concern above about maintaining this code if the number of arguments changes, we can use:
      my %p; my @keys = qw( a b c ); @p{@keys} = (1) x @keys;
      and slice assignment will take care of itself if we change the key list.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://130853]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2023-06-08 09:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (29 votes). Check out past polls.

    Notices?