Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: Iterating over verbatim hash reference

by AnomalousMonk (Archbishop)
on Jan 21, 2010 at 19:11 UTC ( [id://818797]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Iterating over verbatim hash reference
in thread Iterating over verbatim hash reference

I have a slight preference for omitting variable names if I don't really need them.

If you are concerned about cluttering up a (possibly over-broad) scope with needless nonce variable names (not an entirely unreasonable concern, IMO), why not just enclose the sub-section of code in its own limited sub-scope?

>perl -wMstrict -le "{ my %h = qw(a 1 b 2 c 3); while (my ($k, $v) = each %h) { print qq{$k -> $v}; } } " c -> 3 a -> 1 b -> 2

Replies are listed 'Best First'.
Re^4: Iterating over verbatim hash reference
by rovf (Priest) on Jan 22, 2010 at 10:55 UTC
    why not just enclose the sub-section of code in its own limited scope?

    Simply for reason of aesthetics ;-)

    As was already pointed out, there are many ways to skin the cat. I was just wondering whether Perl language really dictates us here to introduce a variable name, since in all other cases I can think of, an expression which is only needed once, doesn't need to be named. Having found this case where I could not do without introducing a variable, I considered it more likey that I was just missing some feature of Perl...
    -- 
    Ronald Fischer <ynnor@mm.st>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-18 00:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found