Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: searching an array

by Articuno (Beadle)
on Jan 03, 2006 at 15:45 UTC ( [id://520635]=note: print w/replies, xml ) Need Help??


in reply to Re: searching an array
in thread searching an array

I prefer
my @lookup{@array} = undef;
to (*)
my %lookup = map { $_ => undef } @array;
:-)

(*) should it be "to" or "instead of" ?

-- 6x9=42

Replies are listed 'Best First'.
Re^3: searching an array
by Roy Johnson (Monsignor) on Jan 03, 2006 at 15:51 UTC
    Except that's a syntax error. You can't declare a hash slice. You'd have to declare the hash, then do the slice-assignment.

    Caution: Contents may have been coded under pressure.
      Oh, ok... I need more sleep... :-)

      -- 6x9=42

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-19 10:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found