definition:
|
deleteAll :: Ord k => [k] -> Map k a -> Map k a
deleteAll ks m = foldl (flip delete) m ks
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Deletes a list of keys from map.
--- Deletion doesn't complain if you try to delete something
--- which isn't there
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
deleteAll
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Ord a => [a] -> 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
|