definition:
|
lookupCurrentScope :: String -> Symboltable a b -> Maybe a
lookupCurrentScope k (ST (m,_) _) = Map.lookup k m
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Looks up the key just in the current scope of the first table.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{ST}) |-> {Just,Nothing}}
|
name:
|
lookupCurrentScope
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
String -> Symboltable a b -> Prelude.Maybe a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|