in reply to Re: comparing two values under 'perl -w'
in thread comparing two values under 'perl -w'

Can we not just skip the secondary ternary here?

if(defined($x) && defined($y) ? $x==$y : !defined($x) && !defined($y)) + {

Replies are listed 'Best First'.
Re: Re: Re: comparing two values under 'perl -w'
by demerphq (Chancellor) on Apr 03, 2002 at 08:48 UTC
    Doh.

    Good point. I certainly could have.

    :-)

    Yves / DeMerphq
    ---
    Writing a good benchmark isnt as easy as it might look.