9a5cc39588
Also, use it with JS compilation ^KT-57735 Fixed
5 lines
157 B
Kotlin
Vendored
5 lines
157 B
Kotlin
Vendored
expect abstract class ConcurrentMap<Key, Value>(
|
|
initialCapacity: Int = 32
|
|
) : MutableMap<Key, Value> {
|
|
fun remove(key: Key, value: Value): Boolean
|
|
} |