definition:
|
renameSymbolInContext :: (QName -> QName) -> Context -> Context
renameSymbolInContext ren (Context tvs cxs qn texps) =
Context tvs cxs (ren qn) (map (renameSymbolInTypeExpr ren) texps)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Context}) |-> {Context}}
|
name:
|
renameSymbolInContext
|
precedence:
|
no precedence defined
|
result-values:
|
{Context}
|
signature:
|
((String, String) -> (String, String)) -> AbstractHaskell.Types.Context
-> AbstractHaskell.Types.Context
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|