CurryInfo: containers-3.0.0 / Data.Map.insert

definition:
insert :: Ord k => k -> a -> Map k a -> Map k a
insert k a m = insertWith (\ _ new -> new) k a m
demand:
argument 4
deterministic:
deterministic operation
documentation:
--- Throws away any previous binding and stores the new one given.
failfree:
(_, _, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_) |-> {Bin}}
name:
insert
precedence:
no precedence defined
result-values:
{Bin}
signature:
Prelude.Ord a => a -> b -> Map a b -> Map a b
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term