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

Re: More efficient dereferencing of a subroutine return

by LanX (Saint)
on Feb 18, 2013 at 02:40 UTC ( [id://1019264]=note: print w/replies, xml ) Need Help??


in reply to More efficient dereferencing of a subroutine return

Are you aware that Perl has list-context?

my @ARRAY=subroutine(); sub subroutine { my @array=("one", "two"," three"); return @array; }

If you still need to return an array-ref in other cases just check wantarray in a condition to see if a scalar is expected.

return wantarray ? @array : \@array;

Cheers Rolf

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-26 05:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found