Module Core__Core_unix.IOVec
I/O-vectors for scatter/gather-operations
type 'buf t= private{buf : 'buf;Buffer holding the I/O-vector
pos : int;Position of I/O-vector in buffer
len : int;Length of I/O-vector in buffer
}Representation of I/O-vectors. NOTE: DO NOT CHANGE THE MEMORY LAYOUT OF THIS TYPE!!! All C-functions in our bindings that handle I/O-vectors depend on it.
include Ppx_sexp_conv_lib.Sexpable.S1 with type 'buf t := 'buf t
val t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a tval sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t
type bigstring= (char, Stdlib.Bigarray.int8_unsigned_elt, Stdlib.Bigarray.c_layout) Stdlib.Bigarray.Array1.t
val string_kind : string kindval bigstring_kind : bigstring kindval empty : 'buf kind -> 'buf temptythe empty I/O-vector.
val of_string : ?pos:int -> ?len:int -> string -> string tof_string ?pos ?len str- returns
an I/O-vector designated by position
posand lengthlenin stringstr.
- raises Invalid_argument
if designated substring out of bounds.
- parameter pos
default = 0
- parameter len
default =
String.length str - pos
val of_bigstring : ?pos:int -> ?len:int -> bigstring -> bigstring tof_bigstring ?pos ?len bstr- returns
an I/O-vector designated by position
posand lengthlenin bigstringbstr.
- raises Invalid_argument
if designated substring out of bounds.
- parameter pos
default = 0
- parameter len
default =
String.length str - pos
val drop : 'buf t -> int -> 'buf tdrop iovec ndropsncharacters fromiovec.- returns
resulting I/O-vector.
- raises Failure
if
nis greater than length ofiovec.
val max_iovecs : int Core__.Import.Lazy.t