<init>

Common
JS
Native
1.0
<init>()

Constructs a new empty HashSet.

Common
JS
Native
1.0
<init>(initialCapacity: Int)
Common
Native
1.0
<init>(initialCapacity: Int, loadFactor: Float)
JS
1.1
<init>(initialCapacity: Int, loadFactor: Float = 0.0f)

Constructs a new empty HashSet.

Parameters

initialCapacity - the initial capacity (ignored)

loadFactor - the load factor (ignored)

Exceptions

IllegalArgumentException - if the initial capacity or load factor are negative

Common
JS
Native
1.0
<init>(elements: Collection<E>)

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