in reply to Re: Re: Testing a number for oddness
in thread Testing a number for oddness
In fact, the only operator I've found that could have this optimization but doesn't is x.% perl -MO=Deparse print 15 + 1, 15 - 1, 15 * 1, 15 % 1, 15 & 1, 15 ^ 1, 15 << 1, !15, 15 || $x, 15 . 1, 15 < 1, 15 <=> 1, 15 ? $x : $y; __END__ print 16, 14, 15, 0, 1, 14, 30, 0, 15, '151', 0, 1, $x;
|
|---|