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