putAllPairs method
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);
}
}