Module type Monad.S
include Base__.Monad_intf.S_without_syntax with type 'a t := 'a t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b tt >>= freturns a computation that sequences the computations represented by two monad elements. The resulting computation first doestto yield a valuev, and then runs the computation returned byf v.
module Monad_infix : sig ... endval return : 'a -> 'a treturn vreturns the (trivial) computation that returns v.
include Base__.Monad_intf.Syntax with type 'a t := 'a t
module Let_syntax : sig ... end