package cohttp-lwt-unix

  1. Overview
  2. Docs
type 'a t = 'a Lwt.t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
val return : 'a -> 'a t
type ic = Net.IO.ic
type oc = Net.IO.oc
type conn = Net.IO.conn
val refill : ic -> [ `Eof | `Ok ] t
val with_input_buffer : ic -> f:(string -> pos:int -> len:int -> 'a * int) -> 'a
val read_line : ic -> string option t
val read : ic -> int -> string t
val write : oc -> string -> unit t
val flush : oc -> unit t
type error = Net.IO.error
val catch : (unit -> 'a t) -> ('a, error) Stdlib.result t
val pp_error : Stdlib.Format.formatter -> error -> unit