HashMap

expect fun HashMap()(source)
expect fun HashMap(initialCapacity: Int)(source)
expect fun HashMap(initialCapacity: Int, loadFactor: Float)(source)
expect fun <K, V> HashMap(original: Map<out K, V>)(source)
actual fun HashMap()

Constructs an empty HashMap instance.


actual fun HashMap(initialCapacity: Int)


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

Constructs an empty HashMap instance.

Parameters

initialCapacity

the initial capacity (ignored)

loadFactor

the load factor (ignored)

Throws

if the initial capacity or load factor are negative


actual fun <K, V> HashMap(original: Map<out K, V>)

Constructs an instance of HashMap filled with the contents of the specified original map.

actual fun HashMap()
actual fun HashMap(initialCapacity: Int)
actual fun HashMap(initialCapacity: Int, loadFactor: Float)
actual fun <K, V> HashMap(original: Map<out K, V>)