definition:
|
insertListWith :: Ord k => (a -> a -> a)
-> [(k, a)] -> Map k a -> Map k a
insertListWith combiner k_a_pairs m
= foldl add m k_a_pairs -- foldl adds from the left
where
add m' (k, a) = insertWith combiner k a m'
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Combine with a list of tuples (key, element), cf. insertWith
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
insertListWith
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Ord b => (a -> a -> a) -> [(b, a)] -> Map b a -> Map b a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|