Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2 Count the number of return values from a subroutine

by thpfft (Chaplain)
on Jul 11, 2001 at 01:22 UTC ( [id://95490]=note: print w/replies, xml ) Need Help??


in reply to Re: Count the number of return values from a subroutine
in thread Count the number of return values from a subroutine

Your version won't produce the result you want if the function returns only one value: you'll just get the value returned.

The p5p version works by filling a list with the return values and then assigning the list, not the function, to a scalar, and works equally well with one or more return values.

It also allows you to keep the return values. This will give you a taste of what it's like maintaining my old code:

sub splat { my @letters = split(/\s/,$_[0]); return (rand(2) > 1) ? @letters : \@letters; } my $count = my @letters = splat('The world is all that is the case.'); my $output = join(",",($count > 1) ? @letters : @{$letters[0]}); print $output;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-20 05:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found