in reply to if statement consolidation
to (one aassign op)$j=$h+8; $p=1; $v=8;
or fatter but faster (no nextstates, but multiple sassign might be faster one aassign a profiler, I dont remember from last time I tried to optimize away nextstate ops)($j, $p, $v) = ($h+8, 1, 8);
note, I didn't B::Concise this post.($j = $h+8),($p = 1), ($v = 8);
|
|---|