putAllPairs method

void putAllPairs(
  1. KtIterable<KtPair<K, V>> pairs
)

Puts all the given pairs into this KtMutableMap with the first component in the pair being the key and the second the value.

Implementation

void putAllPairs(KtIterable<KtPair<K, V>> pairs) {
  for (final value in pairs.iter) {
    put(value.first, value.second);
  }
}