in reply to Re: Efficient array element deletion
in thread Efficient array element deletion
for ( reverse 0 .. $#array ) flattens the list.
for ( -@array .. -1 ) is better.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Efficient array element deletion
by johngg (Canon) on Dec 05, 2008 at 12:58 UTC | |
by ikegami (Patriarch) on Dec 05, 2008 at 13:07 UTC | |
by BrowserUk (Patriarch) on Dec 05, 2008 at 14:11 UTC | |
by kennethk (Abbot) on Dec 07, 2008 at 15:33 UTC |