Removes a number of elements starting from an index
No range checks are done, so an IndexOutOfBounds may occur
the modified array
assert([0, 1, 2].deleteElement(1) == [0, 2]); assert([0, 1, 2].deleteElement(0, 2) == [2]);
See Implementation
Removes a number of elements starting from an index
No range checks are done, so an IndexOutOfBounds may occur