removeAt

abstract fun removeAt(index: UInt)(source)

Removes element with the provided index.

For each index from 0 to size there is exactly one corresponding place for a value. And this operation:

  • removes element and place with index index,

  • and for each place with index grater than index decreases its index by one.

If index is at least size, IndexOutOfBoundsException is thrown.

Throws

when index is no less than size.