module Op:sig..end
A module containing the ( >>= ) binding operator for composition of
continuation monads.
val (>>=) : ('x, 'a) Cf_cmonad.t -> ('a -> ('x, 'b) Cf_cmonad.t) -> ('x, 'b) Cf_cmonad.tUse m >>= f to produce a monad that applies f to the result of
evaluating m.