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

size

abstract val size: In