definition:
|
updRule :: ([Int] -> [Int]) ->
(Expr -> Expr) ->
(String -> String) -> Rule -> Rule
updRule fa fe fs = trRule rule ext
where
rule args exp = Rule (fa args) (fe exp)
ext s = External (fs s)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- update rule
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {trRule}}
|
name:
|
updRule
|
precedence:
|
no precedence defined
|
result-values:
|
{trRule}
|
signature:
|
([Prelude.Int] -> [Prelude.Int]) -> (FlatCurry.Types.Expr
-> FlatCurry.Types.Expr) -> (String -> String) -> FlatCurry.Types.Rule
-> FlatCurry.Types.Rule
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|