Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Apply function "keys" directly to function returning hash

by benn (Vicar)
on Aug 25, 2003 at 16:48 UTC ( [id://286405]=note: print w/replies, xml ) Need Help??


in reply to Apply function "keys" directly to function returning hash

The problem is that you're *not* returning a hash - you're returning a list, which my %hash = func() turns into a hash for you.

One way round this would be to return a hashref instead - something like this...

sub func { return {'a' => 'ah', 'b' => 'be'} }; print keys %{func()}; # a b
Hope this helps,
Ben.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-19 11:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found