:: (Monad m) => m a -> (a -> m b) -> m b package:universum

Sequentially compose two actions, passing any value produced by the first as an argument to the second. 'as >>= bs' can be understood as the do expression
do a <- as
bs a
Like concatMapM, but has its arguments flipped, so can be used instead of the common fmap concat $ forM pattern.
Same as >>=, but with the arguments interchanged.