kotlin.collections.MutableList
MutableList
interface MutableList<E> : List<E>, MutableCollection<E>
A generic ordered collection of elements that supports adding and removing elements.
Parameters
E
- the type of elements contained in the list. The mutable list is invariant on its element type.
Inherited Properties
abstract val size: In |