>>= is:exact -package:basement -package:control-dsl

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
Module over monad operator for Code
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
Sequentially compose two actions, passing any value produced by the first as an argument to the second.
Bind to actions.
x >>= g applies a linear function g linearly (i.e., using it exactly once) on the value of type a inside the value of type m a
Sequentially compose two actions, passing any value produced by the first as an argument to the second.