JS stdlib: added LinkedHashMap abd LinkedHashSet.
This commit is contained in:
@@ -98,6 +98,9 @@ public open class HashMap<K, V>(capacity: Int = 0) : MutableMap<K, V> {
|
||||
public override fun entrySet(): MutableSet<MutableMap.MutableEntry<K, V>> = js.noImpl
|
||||
}
|
||||
|
||||
library
|
||||
public open class LinkedHashMap<K, V>(capacity: Int = 0) : HashMap<K, V>(capacity)
|
||||
|
||||
library
|
||||
public class NoSuchElementException(message: String? = null) : Exception() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user