List of functions and data types in Array
Void removeAt(var [a] array, Int idx)
Arguments
array: The array to act on
idx: The index of the element to remove
Usage
Remove (in-place) the element at position idx.
array = [1,2,3,4,5,6,7];
removeAt(array,2);
// array = [1,2,4,5,6,7];
Related