Shift elements in the slice by n > 0 positions to the left.
The first few n elements in the slice will get overwritten.
static int[] empty = []; empty.shiftLeft(2); // does nothing
unshift
Shift elements in the slice by n > 0 positions to the left.
The first few n elements in the slice will get overwritten.