CurryInfo: base-3.4.0 / Prelude.&>

definition: Info
 
(&>) :: Bool -> a -> a
True &> x = x
demand: Info
 arguments 1 2
deterministic: Info
 deterministic operation
documentation: Info
 
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: Info
 ({True}, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 infixr
iotype: Info
 {({True},_) |-> _}
name: Info
 &>
precedence: Info
 0
result-values: Info
 _
signature: Info
 Bool -> a -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 possibly non-reducible on same data term