package unix-unistd

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | SEEK_SET
  2. | SEEK_CUR
  3. | SEEK_END
  4. | SEEK_DATA
  5. | SEEK_HOLE
type defns = {
  1. seek_set : int;
  2. seek_cur : int;
  3. seek_end : int;
  4. seek_data : int option;
  5. seek_hole : int option;
}
module Host : sig ... end
val to_code : host:Host.t -> t -> int option
val of_code_exn : host:Host.t -> int -> t
val of_code : host:Host.t -> int -> t option