definition:
|
findWithDefault :: Ord k => a -> k -> Map k a -> a
findWithDefault deflt k m
= case lookup k m of
Nothing -> deflt
Just a -> a
|
demand:
|
argument 4
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Retrieves element bound to given key.
--- If the element is not contained in map, return
--- default value.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
findWithDefault
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Ord b => a -> b -> Map b a -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|