CurryInfo: property-prover-2.0.0 / Inference.Simplification.rnRule

definition:
rnRule :: Renaming (ARule a)
rnRule xs (ARule a vs e)  = let (xs1, vs') = takeVars xs vs
                                (xs2, e')  = rnExpr (zip (map fst vs) vs') xs1 e
                            in (xs2, ARule a (swapAnn vs' vs) e')
rnRule xs (AExternal a s) = (xs, AExternal a s)
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Renaming of a function rule.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{ARule}) |-> {(,)} || (_,{AExternal}) |-> {(,)}}
name:
rnRule
precedence:
no precedence defined
result-values:
{(,)}
signature:
[Prelude.Int] -> FlatCurry.Annotated.Types.ARule a
-> ([Prelude.Int], FlatCurry.Annotated.Types.ARule a)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term