in reply to Re: Re: Re: Re: Re: Perl Idioms Explained: && and || "Short Circuit" operators
in thread Perl Idioms Explained - && and || "Short Circuit" operators
So would I be correct in understanding that
switch (ulong_val) { case 0 : handle_case0; break; case ULONGMAX: handle_caseMAX; break; default : handle_default; break; }
Generates a _huge_ dispatch table? Can that be correct? I found your dissambly to be very interesting, but I personaly would have like to have seen what happens when the input is discontiguous and operated on a variable and not a constant. Any chance of an update BrowserUk?
First they ignore you, then they laugh at you, then they fight you, then you win.
-- Gandhi
|
---|
Replies are listed 'Best First'. | |
---|---|
Re+ :Perl Idioms Explained: && and || "Short Circuit" operators
by BrowserUk (Patriarch) on Oct 23, 2003 at 00:49 UTC | |
by demerphq (Chancellor) on Oct 23, 2003 at 12:25 UTC | |
by TimToady (Parson) on Oct 23, 2003 at 18:03 UTC |