plusAssign

inline operator fun plusAssign(pair: Pair<K, V>)

Puts the key/value mapping from the pair in this map, using the first element as the key, and the second element as the value.


inline operator fun plusAssign(pairs: Array<out Pair<K, V>>)
inline operator fun plusAssign(pairs: Iterable<Pair<K, V>>)
inline operator fun plusAssign(pairs: Sequence<Pair<K, V>>)

Puts all the pairs into this map, using the first component of the pair as the key, and the second component as the value.


inline operator fun plusAssign(from: Map<K, V>)
inline operator fun plusAssign(from: ScatterMap<K, V>)

Puts all the key/value mappings in the from map into this map.