Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Keep It Simple, Stupid
 
PerlMonks  

Re: undef-safe equality

by dragonchild (Archbishop)
on Apr 21, 2005 at 15:30 UTC ( [id://450169]=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 undef-safe equality

Write your own function. (This one is adapated from Test::Builder, the basis for Test::More's is() test.)
sub is_eq { my ($l, $r) = @_; if (defined $l && defined $r) { return $l eq $r; } else { return !defined $l && !defined $r; } }

Updated: Fixed typo in transcription from Test::Builder::is_eq()

Replies are listed 'Best First'.
Re^2: undef-safe equality
by tall_man (Parson) on Apr 21, 2005 at 15:46 UTC
    Your second return should be:
    return !defined $l && !defined $r;

    Otherwise, two undefs will compare unequal.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://450169]
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.