definition:
|
qmapLookup :: QName -> [(String, Map.Map String a)] -> Maybe a
qmapLookup (mn,fn) mmap =
maybe Nothing
(\fm -> Map.lookup fn fm)
(lookup mn mmap)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Looks up the info for a qualified name in a map.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({(,)},_) |-> _}
|
name:
|
qmapLookup
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String, String) -> [(String, Data.Map.Map String a)] -> Prelude.Maybe a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|