definition:
|
updQNames :: Update Expr QName
updQNames f = trExpr Var Lit comb Let Free Or Case (Branch . updPatCons f) typed
where
comb ct name args = Comb ct (f name) args
typed e ty = Typed e (updQNamesInTypeExpr f ty)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- update all qualified names in expression
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {trExpr}}
|
name:
|
updQNames
|
precedence:
|
no precedence defined
|
result-values:
|
{trExpr}
|
signature:
|
((String, String) -> (String, String)) -> FlatCurry.Types.Expr
-> FlatCurry.Types.Expr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|