definition: |
fcOr :: Expr -> Expr -> Expr fcOr e1 e2 | e1 == fcFalse = e2 | e2 == fcFalse = e1 | e1 == fcTrue = fcTrue | e2 == fcTrue = fcTrue | otherwise = Comb FuncCall (pre "||") [e1,e2] |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
Disjunction of two expressions. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
fcOr |
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 |