Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Perl Idioms Explained - keys %{{map{$_=>1}@list}}

by Juerd (Abbot)
on Aug 04, 2003 at 13:02 UTC ( [id://280660]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my %foo = map { $_ => 1 } @foo;
    
    if ($foo{$bar}) {
       ...
    }
    
  2. or download this
    my %foo;
    undef @foo{@foo};
    ...
    if (exists $foo{$bar}) {
       ...
    }
    
  3. or download this
    if (grep $_ eq $bar, @foo) {
       ...
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-25 20:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found