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

Re^2: Search an array for values sequentially

by AnomalousMonk (Archbishop)
on May 20, 2014 at 12:43 UTC ( [id://1086780]=note: print w/replies, xml ) Need Help??


in reply to Re: Search an array for values sequentially
in thread Search an array for values sequentially

my %available;
@available{get_available($router)};# get_available return a list
c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le "my %h; @h{ qw(a b c) }; dd \%h; " Useless use of hash slice in void context at -e line 1. {} c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le "my %h; @h{ qw(a b c) } = undef; dd \%h; " { a => undef, b => undef, c => undef }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (8)
As of 2024-04-18 06:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found