Parameters
combiner: ((key) => ((left) => ((right) => V)))
- (key): ((left) => ((right) => V))
Returns ((left) => ((right) => V))
- (left): ((right) => V)
Returns ((right) => V)
Returns ((left) => ((right) => Map<K, V>))
A new Map
with entries came from both of them.
- (left): ((right) => Map<K, V>)
Returns ((right) => Map<K, V>)
- (right): Map<K, V>
Returns Map<K, V>
Combines two
Map
s into another one. If there are duplicate keys, their value will be merged withcombiner
.