kotlin.collections.Set

Set

interface Set<out E> : Collection<E>

A generic unordered collection of elements that does not support duplicate elements. Methods in this interface support only read-only access to the set; read/write access is supported through the MutableSet interface.

Parameters

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

Properties

<

size