Parameters
combiner: ((left) => ((right) => V))
- (left): ((right) => V)
Returns ((right) => V)
Returns (<K>(left) => ((right) => Map<K, V>))
A new Map
with entries came from both of them.
- <K>(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
.