You can search for identifiers within the package.
in-package search v0.2.0
type t = {
buffer : Buffer.t;
off : int;
len : int;
}
Type of IOVec.
val weight : t -> int
Weight of t.
t
val length : t -> int
Length (in bytes) of t.
val lengthv : t list -> int
Length (in bytes) of a list of t.
val shift : t -> int -> t
shift t n shifts n bytes on t.
shift t n
n
val split : t -> int -> t * t
split t off splits t at off point.
split t off
off
val merge : t -> t -> t option
merge a b tries to merge a and b into a new t.
merge a b
a
b