public native removeAt(index as Int) as Void
Removes the element at the requested index.
Elements after the removed slot are shifted to the left.
| Parameter | Description |
|---|---|
index | Zero-based index of the element to remove. |
import klyn.collections data = ["A", "B", "C"] data.removeAt(1) print(data) # [A, C]