putAll

fun putAll(pairs: Array<out Pair<K, V>>)
fun putAll(pairs: Iterable<Pair<K, V>>)
fun putAll(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.


fun putAll(from: Map<K, V>)
fun putAll(from: ScatterMap<K, V>)

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