definition:
|
insertSecondTable :: String -> b -> Symboltable a b -> Symboltable a b
insertSecondTable k v (ST (m,n) ms) = ST (m,(Map.insert k v n)) ms
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Inserts a key-value-pair into the second table
--- (which does not support scopes).
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{ST}) |-> {ST}}
|
name:
|
insertSecondTable
|
precedence:
|
no precedence defined
|
result-values:
|
{ST}
|
signature:
|
String -> a -> Symboltable b a -> Symboltable b a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|