Module S.Let_syntax
val return : 'a -> 'a t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
t >>= f
returns a computation that sequences the computations represented by two monad elements. The resulting computation first doest
to yield a valuev
, and then runs the computation returned byf v
.
module Let_syntax : sig ... end