definition:
|
rnProg :: Renaming (AProg a)
rnProg xs (AProg m is ty fs os) = (xs1, AProg m is ty fs' os)
where
(xs1, fs') = mapAccumL rnFunc xs fs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Renaming of a 'Prog', i.e., all variables occurring in the 'Prog'
--- get renamed to @v1@, @v2@, ... consistently ($\alpha$-conversion).
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{AProg}) |-> {(,)}}
|
name:
|
rnProg
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
[Prelude.Int] -> FlatCurry.Annotated.Types.AProg a
-> ([Prelude.Int], FlatCurry.Annotated.Types.AProg a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|