CurryInfo: base-3.4.0 / Data.Either.either

definition: Info
 
either :: (a -> c) -> (b -> c) -> Either a b -> c
either left _     (Left  a) = left a
either _    right (Right b) = right b
demand: Info
 argument 3
deterministic: Info
 deterministic operation
documentation: Info
 
Apply a case analysis to a value of the Either type.
If the value is `Left x`, the first function is applied to `x`.
If the value is `Right y`, the second function is applied to `y`.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{Left}) |-> _ || (_,_,{Right}) |-> _}
name: Info
 either
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> b) -> (c -> b) -> Either a c -> b
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms