RandomAccess

Common
JS
Native
1.0
JVM
1.1
typealias RandomAccess = RandomAccess
(source)

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.

Common
1.0
class ArrayList < E > : MutableList < E > , RandomAccess
JVM
1.1
typealias ArrayList < E > = ArrayList < E >
JS
1.1
open class ArrayList < E > :
AbstractMutableList < E > ,
MutableList < E > ,
RandomAccess
Native
1.3
class ArrayList < E > :
MutableList < E > ,
RandomAccess ,
AbstractMutableList < E >