CurryInfo: base-3.4.0 / Control.Applicative.liftA3

definition: Info
 
liftA3 :: Applicative f => (a -> b -> c -> d) -> f a -> f b -> f c -> f d
liftA3 f a b c = liftA2 f a b <*> c
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Lift a ternary function to actions.
failfree: Info
 (_, _, _, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_,_) |-> _}
name: Info
 liftA3
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Applicative e => (a -> b -> c -> d) -> e a -> e b -> e c -> e d
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms