Module Lwt.Infix.Let_syntax
module Let_syntax : sig..end
This module provides support for
ppx_let.
Since 4.2.0
val return : 'a -> 'a Lwt.t
See Lwt.return.
val map : 'a Lwt.t -> f:('a -> 'b) -> 'b Lwt.t
See Lwt.map.
val bind : 'a Lwt.t -> f:('a -> 'b Lwt.t) -> 'b Lwt.t
See Lwt.bind.
val both : 'a Lwt.t -> 'b Lwt.t -> ('a * 'b) Lwt.t
See Lwt.both.
module Open_on_rhs : sig..end