Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: foreach keys possible using a hash reference?

by Abigail-II (Bishop)
on Jul 04, 2002 at 17:10 UTC ( [id://179499]=note: print w/replies, xml ) Need Help??


in reply to foreach keys possible using a hash reference?

The rule on what the syntax is when dealing with references is very simple. Wherever you use something of the form sigil followed by the name of a variable (scalar, hash, array, subroutine), you may replace the name of the variable with a block whose result is a reference to the appropriate type.

So, where you normally would write

keys %hash
you now replace hash with a block returning a reference to a hash, and you get:
keys %{$hashref}
The block has a very, very simple statement, the statement is just an expression consisting of a single variable. As an extra feature, in such a simple expression, you may omit the braces, so you will end up with:
keys %$hashref

Abigail

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-24 06:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found