kotlin.collections.MutableSet

MutableSet

interface MutableSet<E> : Set<E>, MutableCollection<E>

A generic unordered collection of elements that does not support duplicate elements, and supports adding and removing elements.

Parameters

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

Inherited Properties

size

登录查看完整内容