definition: |
(<=<) :: Monad m => (b -> m c) -> (a -> m b) -> (a -> m c) (<=<) = flip (>=>) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Right-to-left composition of Kleisli arrows. @('>=>')@, with the arguments --- flipped. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
infixr |
iotype: |
{(_) |-> {flip}} |
name: |
<=< |
precedence: |
1 |
result-values: |
{flip} |
signature: |
Prelude.Monad b => (a -> b c) -> (d -> b a) -> d -> b c |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |