Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
Think about Loose Coupling
 
PerlMonks  

Re: shift vs @_

by grep (Monsignor)
on Oct 02, 2006 at 14:36 UTC ( [id://575925]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to shift vs @_

I will often use multiple shifts if I want to short circuit a sub when a non-true value is passed.
sub foo { my $bar = shift || return; my $baz = shift || return '<p style="font-color:red">BAD</p>'; }

Again I'll note that this works only for non-true values, IOW if 0(zero) is acceptable then don't do this.



grep
Mynd you, mønk bites Kan be pretti nasti...

Replies are listed 'Best First'.
Re^2: shift vs @_
by exussum0 (Vicar) on Oct 02, 2006 at 16:59 UTC
    'careful, perl's true may not coincide with real true. "0" and 0 are equivs.
Re^2: shift vs @_
by ikegami (Patriarch) on Oct 02, 2006 at 17:14 UTC

    if 0(zero) is acceptable then don't do this.

    More specifically, if one of the following is acceptable, then don't do this:

    • 0 (numeical zero),
    • '0' (the string consisting exactly of the character zero),
    • '' (the zero-length string),
    • undef (the undefined value), or
    • something that evaluates to one of the above in boolean context

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://575925]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.