definition: |
fcAnd :: Expr -> Expr -> Expr fcAnd e1 e2 | e1 == fcTrue = e2 | e2 == fcTrue = e1 | e1 == fcFalse = fcFalse | e2 == fcFalse = fcFalse | otherwise = Comb FuncCall (pre "&&") [e1,e2] |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
Conjunction of two expressions. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
fcAnd |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
FlatCurry.Types.Expr -> FlatCurry.Types.Expr -> FlatCurry.Types.Expr |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |