You can search for identifiers within the package.
in-package search v0.2.0
lwt-pipe
Lwt_pipe.Writer
type 'a t = ('a, [ `w ]) pipe
val map : f:('a -> 'b) -> ('b, [> `w ]) pipe -> 'a t
Map values before writing them
val send_both : ('a, [> `w ] as 'kind) pipe -> ('a, [> `w ] as 'kind) pipe -> 'a t
send_both a b returns a writer c such that writing to c writes to a and b, and waits for those writes to succeed before returning
send_both a b
c
a
b
val send_all : ('a, [> `w ]) pipe list -> 'a t
Generalized version of send_both
send_both
Invalid_argument
if the list is empty