LinkedHashMap

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

Constructs an empty LinkedHashMap instance.


actual fun LinkedHashMap(initialCapacity: Int)


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

Constructs an empty LinkedHashMap 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> LinkedHashMap(original: Map<out K, V>)

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