kotlin.collections.MutableCollection

MutableCollection

interface MutableCollection<E> : 
    Collection<E>, 
    MutableIterable<E>

A generic collection of elements that supports adding and removing elements.

Parameters

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

Inherited Properties

size

登录查看完整内容