Parameters
combiner: ((key) => ((newValue) => ((oldValue) => V)))
- (key): ((newValue) => ((oldValue) => V))
Returns ((newValue) => ((oldValue) => V))
- (newValue): ((oldValue) => V)
Returns ((oldValue) => V)
Returns ((arr) => Map<K, V>)
A new Map
made from the entries.
- (arr): Map<K, V>
Parameters
arr: readonly Tuple<K, V>[]
Returns Map<K, V>
Creates a new
Map
from the array of dictionary entries. If there are duplicate keys,combiner
will be called to merge two values.