definition:
|
updBranch :: (Pattern -> Pattern) -> (Expr -> Expr) -> BranchExpr -> BranchExpr
updBranch fp fe = trBranch branch
where
branch pat exp = Branch (fp pat) (fe exp)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- update branch expression
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {trBranch}}
|
name:
|
updBranch
|
precedence:
|
no precedence defined
|
result-values:
|
{trBranch}
|
signature:
|
(FlatCurry.Types.Pattern -> FlatCurry.Types.Pattern) -> (FlatCurry.Types.Expr
-> FlatCurry.Types.Expr) -> FlatCurry.Types.BranchExpr
-> FlatCurry.Types.BranchExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|