definition: |
ifThenElseExp :: CExpr -> CExpr -> CExpr -> CExpr ifThenElseExp bexp texp eexp = applyF (pre "if_then_else") [bexp, texp, eexp] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
Constructs an if-then-else expression. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
ifThenElseExp |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
AbstractCurry.Types.CExpr -> AbstractCurry.Types.CExpr -> AbstractCurry.Types.CExpr -> AbstractCurry.Types.CExpr |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |