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.
Map
combiner
Function to merge values when found a duplicate key. Also the duplicated key will be passed.
A new one with the inserted entry.
Generated using TypeDoc
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.