CurryInfo: finite-map-3.0.0 / Data.FiniteMap.addListToFM

definition:
addListToFM :: Eq key => FM key elt -> [(key,elt)] -> FM key elt
addListToFM (FM le fm) key_elt_pairs =
  FM le (addListToFM' le fm key_elt_pairs)
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Throws away any previous bindings and stores the new ones given.
--- The items are added starting with the first one in the list
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{FM},_) |-> {FM}}
name:
addListToFM
precedence:
no precedence defined
result-values:
{FM}
signature:
Prelude.Eq a => FM a b -> [(a, b)] -> FM a b
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term