Module Lwt.Infix
This module provides several infix operators for making programming with Lwt more convenient.
To use it, open Lwt.Infix
.
Of the operators declared in this module, only >|=
is recommended for new code. The only other commonly-used operator is >>=
.
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
p >>= f
is the same asLwt.bind
p f
. It requiresLwt.Infix
to be opened in scope:open Lwt.Infix let () = Lwt_main.run (Lwt_io.(read_line stdin) >>= Lwt_io.printl) (* ocamlfind opt -linkpkg -thread -package lwt.unix code.ml && ./a.out *)
It is recommended to use the PPX
let%lwt
syntax instead. This operator is the next-best choice. It is frequently found while reading existing Lwt code.
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
p >|= f
is the same asLwt.map
f p
. It requiresLwt.Infix
to be opened in scope.open Lwt.Infix let () = Lwt_main.run (Lwt_io.(read_line stdin) >|= ignore) (* ocamlfind opt -linkpkg -thread -package lwt.unix code.ml && ./a.out *)
val (<&>) : unit t -> unit t -> unit t
p1 <&> p2
is the same asLwt.join
[p1; p2]
. It requiresLwt.Infix
to be opened in scope.Unlike with
Lwt.bind
andLwt.map
, there are no problems with explicitLwt.join
syntax, so using this operator is not recommended.
val (<?>) : 'a t -> 'a t -> 'a t
p1 <?> p2
is the same asLwt.choose
[p1; p2]
. It requiresLwt.Infix
to be opened in scope.Unlike with
Lwt.bind
andLwt.join
, there are no problems with explicitLwt.choose
syntax, so using this operator is not recommended.Furthermore, most users actually need
Lwt.pick
instead ofLwt.choose
.
val (=<<) : ('a -> 'b t) -> 'a t -> 'b t
f =<< p
is the same asLwt.bind
p f
. It requiresLwt.Infix
to be opened in scope.This operator is obscure and its use is discouraged. It is the same as
p >>= f
.
val (=|<) : ('a -> 'b) -> 'a t -> 'b t
f =|< p
is the same asLwt.map
f p
. It requiresLwt.Infix
to be opened in scope.This operator is obscure and its use is discouraged. It is the same as
p >|= f
.
module Let_syntax : sig ... end
This module provides support for ppx_let.