HashSet

expect fun HashSet()(source)
expect fun HashSet(initialCapacity: Int)(source)
expect fun HashSet(initialCapacity: Int, loadFactor: Float)(source)
expect fun <E> HashSet(elements: Collection<E>)(source)
actual fun HashSet()

Constructs a new empty HashSet.


actual fun HashSet(initialCapacity: Int)


actual fun HashSet(initialCapacity: Int, loadFactor: Float = 0.0f)

Constructs a new empty HashSet.

Parameters

initialCapacity

the initial capacity (ignored)

loadFactor

the load factor (ignored)

Throws

if the initial capacity or load factor are negative


actual fun <E> HashSet(elements: Collection<E>)

Constructs a new HashSet filled with the elements of the specified collection.

actual fun HashSet()
actual fun HashSet(initialCapacity: Int)
actual fun HashSet(initialCapacity: Int, loadFactor: Float)
actual fun <E> HashSet(elements: Collection<E>)