Module Uwt_base.Iovec_write

module Iovec_write: sig .. end

pass multiple buffers at once to a libuv write function.

type t = 
| Bigarray of Uwt_base.buf * int * int
| String of string * int * int
| Bytes of bytes * int * int
val drop : t list -> int -> t list

drop tl n adjusts the I/O vector list tl so that it no longer includes its first n bytes.