put_all

function put_all(map: map<-K, -V>)

Update this map with the entries from another map. Where a key is found in both this and the passed map, the corresponding value in the passed map overwrites the value in this map. In other words, this is a right-biased operation.

Since

0.9.0

Parameters

map

the map whose entries are used to update this map