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