JS stdlib: added LinkedHashMap abd LinkedHashSet.

This commit is contained in:
Zalim Bashorov
2014-06-18 22:26:42 +04:00
parent a2584dc6d7
commit 6f5c88c21f
4 changed files with 106 additions and 0 deletions
+3
View File
@@ -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() {}