definition:
|
cBranch :: CPattern -> CExpr -> (CPattern, CRhs)
cBranch pattern exp = (pattern, CSimpleRhs exp [])
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructs from a pattern and an expression a branch for a case expression.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {(,)}}
|
name:
|
cBranch
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
AbstractCurry.Types.CPattern -> AbstractCurry.Types.CExpr
-> (AbstractCurry.Types.CPattern, AbstractCurry.Types.CRhs)
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|