RandomAccess
typealias RandomAccess = RandomAccess
Marker interface indicating that the List implementation supports fast indexed access.
Inheritors
ArrayList
Provides a MutableList implementation, which uses a resizable array as its backing storage.
class ArrayList<E> : MutableList<E>, RandomAccess
typealias ArrayList<E> = ArrayList<E>
open class ArrayList<E> :
AbstractMutableList<E>,
MutableList<E>,
RandomAccess
class ArrayList<E> :
MutableList<E>,
RandomAccess,
AbstractMutableCollection<E>