definition: |
(&>) :: Bool -> a -> a True &> x = x |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Conditional expression. --- An expression like `(c &> e)` is evaluated by evaluating the first --- argument to `True` and then evaluating `e`. --- The expression has no value if the condition does not evaluate to `True`. |
failfree: |
({True}, _) |
indeterministic: |
referentially transparent operation |
infix: |
infixr |
iotype: |
{({True},_) |-> _} |
name: |
&> |
precedence: |
0 |
result-values: |
_ |
signature: |
Bool -> a -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |