get

open infix operator override fun get(index: Int): E

Deprecated

The index should be a PositiveInt.

Replace with

import kotools.types.number.PositiveInt
this[PositiveInt(index)]

Returns the element at the specified index in this collection, or throws an IndexOutOfBoundsException if the index is out of bounds.