Parameters
combiner: ((newValue) => ((oldValue) => V))
- (newValue): ((oldValue) => V)
Returns ((oldValue) => V)
Returns (<K>(arr) => Map<K, V>)
A new Map
made from the entries.
- <K>(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.