Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: How would I write this using map?

by kwaping (Priest)
on Jan 12, 2009 at 23:55 UTC ( [id://735838]=note: print w/replies, xml ) Need Help??


in reply to How would I write this using map?

Using map, it would look like this:
push @$ref2array, map $_, sort keys %{$obj->things};
... which could then be distilled to:
push @$ref2array, sort keys %{$obj->things};

---
It's all fine and dandy until someone has to look at the code.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-24 01:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found