Parameters
combiner: ((key) => ((leftValue) => ((rightValue) => Option<V1>)))
- (key): ((leftValue) => ((rightValue) => Option<V1>))
Returns ((leftValue) => ((rightValue) => Option<V1>))
- (leftValue): ((rightValue) => Option<V1>)
Returns ((rightValue) => Option<V1>)
Returns ((left) => ((right) => Map<K, V1>))
A new Map
with the entries merged by combiner
.
- (left): ((right) => Map<K, V1>)
Returns ((right) => Map<K, V1>)
- (right): Map<K, V1>
Returns Map<K, V1>
Makes a difference
left - right
immutably likedifference
, but you can replace the element instead of removing.