in reply to Re^10: How to speed up a nested loop?
in thread How to speed up a nested loop?
instead of$stuff = \$stuff2[2]; loop { $moo = $$stuff->[3]; }
Or i'm misunderstanding something here. :)$stuff = $stuff2[2] || []; loop { $moo = $stuff->[3]; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^12: How to speed up a nested loop?
by tilly (Archbishop) on Sep 23, 2008 at 05:40 UTC |