klyn.collections.LinkedList.removeAt
method
public native removeAt(index as Int) as Void
Description

Removes the element at the requested index.

The current implementation uses the same contiguous native storage as ArrayList<T>, so elements after the removed slot are shifted left.

Parameters
ParameterDescription
indexZero-based index of the element to remove.
Throws
  • IndexException if index is outside [0, size).
Example
import klyn.collections

data = LinkedList<Int>([10, 20, 30])
data.removeAt(1)
print(data)  # l:[10, 30]