Removes the element at the provided position in the given array
the array
position of element to remove
Tests removing an element from an array
int[] numbas = [1, 5, 2]; numbas = numbas.removeResize(1); // should now be [1, 2] writeln(numbas); assert(numbas == [1, 2]);
See Implementation
Removes the element at the provided position in the given array