Inserts a new entry with the key and value to the Map object immutably. If there is already an entry with the key, combiner will be called to merge their values.
Type Parameters
V
Parameters
combiner: ((newValue) => ((oldValue) => V))
Function to merge values when found a duplicate key.
Inserts a new entry with the key and value to the
Map
object immutably. If there is already an entry with the key,combiner
will be called to merge their values.