3.2.112 pushpush
This function treats
foreach $value (
or:
splice @ARRAY, @ARRAY, 0,
but is more efficient (for both you and your computer). You can use push in combination with shift to make a fairly time-efficient shift register or queue:
for (;;) {
push @ARRAY, shift @ARRAY;
...
}
|
|