definition:
|
findBranch :: APattern a -> [ABranchExpr a] -> Maybe ([(VarIndex, a)], AExpr a)
findBranch _ [] = Nothing
findBranch p (ABranch q e : bs) | eqPattern p q = Just (patVars q, e)
| otherwise = findBranch p bs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Find the matching branch for a given pattern.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {Nothing} || (_,{:}) |-> {Just,Nothing}}
|
name:
|
findBranch
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
FlatCurry.Annotated.Types.APattern a
-> [FlatCurry.Annotated.Types.ABranchExpr a]
-> Prelude.Maybe ([(Prelude.Int, a)], FlatCurry.Annotated.Types.AExpr a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|