in reply to undef-safe equality
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 19:46 UTC |