<init>

Common
JS
1.0
<init>()

Constructs an empty LinkedHashMap instance.

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

Constructs an empty LinkedHashMap instance.

Parameters

initialCapacity - the initial capacity (ignored)

loadFactor - the load factor (ignored)

Exceptions

IllegalArgumentException - if the initial capacity or load factor are negative

Common
JS
1.0
<init>(original: Map<out K, V>)

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