CurryInfo: base-3.3.0 / Prelude.=<<

definition:
(=<<) :: Monad m => (a -> m b) -> m a -> m b
f =<< x = x >>= f
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Same as '>>=', but with the arguments interchanged.
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
infixr
iotype:
{(_,_,_) |-> _}
name:
=<<
precedence:
1
result-values:
_
signature:
Monad b => (a -> b c) -> b a -> b c
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms