Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Re: Re: Re: Context aware functions - best practices?

by sauoq (Abbot)
on Jan 15, 2003 at 22:56 UTC ( [id://227264]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Context aware functions - best practices?
in thread Context aware functions - best practices?

That's obviously a list-context function, and you don't expect it to do anything useful at all in scalar context.

You make a good point here. Some functions just shouldn't be expected to do anything useful in scalar context. A nice idiom for writing such functions is to start them with wantarray or return undef.

-sauoq
"My two cents aren't worth a dime.";

Replies are listed 'Best First'.
Re^5: Context aware functions - best practices?
by Aristotle (Chancellor) on Jan 15, 2003 at 23:55 UTC
    Or maybe just return unless wantarray; because return is smart enough to provide undef by itself in scalar context. :)

    Makeshifts last the longest.

Log In?
Username:
Password:

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

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

    No recent polls found