Functions for @arrays in perl
by kalai[ Edit ] 2008-11-22 20:28:28
* pop - remove the last element from an array and return it
* push - append one or more elements to an array
* shift - remove the first element of an array, and return it
* splice - add or remove elements anywhere in an array
* unshift - prepend more elements to the beginning of a list
* delete- remove particular element of an array