class CopyOnWriteHashMap<K : Any, V : Any>
This is an internal implementation for copy-on-write concurrent map. It is very limited since it is not intended as general purpose implementation.
CopyOnWriteHashMap()
This is an internal implementation for copy-on-write concurrent map. It is very limited since it is not intended as general purpose implementation. |
fun computeIfAbsent(key: K, producer: (key: K) -> V): V |
|
operator fun get(key: K): V? |
|
fun put(key: K, value: V): V? |
|
fun remove(key: K): V? |
|
operator fun set(key: K, value: V): Unit
Operator function for array access syntax |