in reply to Re: Array Splicing: Need Help!
in thread Array Splicing: Need Help!

Cool! Does that mean we can always replace "splice" with "slicing"?
Is there any case where only "splice" works but not slicing?

Replies are listed 'Best First'.
Re^3: Array Splicing: Need Help!
by chromatic (Archbishop) on May 26, 2005 at 21:16 UTC

    Splicing modifies the array. Slicing returns a list without modifying the original data structure (whether it's a hash, an array, or a list).