kotlin.collections.AbstractMutableCollection

AbstractMutableCollection

abstract class AbstractMutableCollection<E> : 
    MutableCollection<E>, 
    AbstractCollection<E>

Platform and version requirements: Kotlin 1.1

Provides a skeletal implementation of the MutableCollection interface.

Parameters

E - the type of elements contained in the collection. The collection is invariant on its element type.

登录查看完整内容