public native removeAt(index as Int) as Void
Removes the element at the requested index.
The synchronized native storage lock is held for the whole operation.
| Parameter | Description |
|---|---|
index | Zero-based index of the element to remove. |
import klyn.collections data = LinkedListSync<Int>([10, 20, 30]) data.removeAt(1) print(data) # ls:[10, 30]