Module Monad.Infix

val (>>=) : 'a t -> ('a -> 'b t) -> 'b t

Bind operation of the concurrency monad.

val (>|=) : 'a t -> ('a -> 'b) -> 'b t

Map operation of the concurrency monad.