You can search for identifiers within the package.
in-package search v0.2.0
type 'a t = 'a Lwt.t
val (>>=) : 'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
val return : 'a -> 'a Lwt.t
val fail : exn -> 'a Lwt.t
val exists : string -> bool Lwt.t
val y2k : float
val get_vhd_time : float -> int32
val now : unit -> int32
val get_modification_time : string -> int32 Lwt.t
val get_file_size : string -> int64 Lwt.t
type fd = Fd.fd = {
fd : Lwt_unix.file_descr;
filename : string;
lock : Lwt_mutex.t;
}
val openfile : string -> fd Lwt.t
val fsync : fd -> unit
val size_of_file : fd -> int64 Lwt.t
val create : string -> fd Lwt.t
val close : fd -> unit Lwt.t
exception Not_sector_aligned of int64
val assert_sector_aligned : int64 -> unit
val really_read_into : fd -> int64 -> Cstruct.t -> Cstruct.t Lwt.t
val really_read : fd -> int64 -> int -> Cstruct.t Lwt.t
val really_write : fd -> int64 -> Cstruct.t -> unit Lwt.t
val alloc : int -> Cstruct.t