kotlin.collections.MutableMap
MutableMap
interface MutableMap<K, V> : Map<K, V>
A modifiable collection that holds pairs of objects (keys and values) and supports efficiently retrieving the value corresponding to each key. Map keys are unique; the map holds only one value for each key.
Parameters
K
- the type of map keys. The map is invariant on its key type.
V
- the type of map values. The mutable map is invariant on its value type.
Types
|