You can search for identifiers within the package.
in-package search v0.2.0
unix-unistd
Unistd.Seek
type t =
| SEEK_SET
| SEEK_CUR
| SEEK_END
| SEEK_DATA
| SEEK_HOLE
type defns = {
seek_set : int;
seek_cur : int;
seek_end : int;
seek_data : int option;
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