You can search for identifiers within the package.
in-package search v0.2.0
type input = {
buf : string;
mutable i : int;
mutable len : int;
mutable is_final : bool;
}
val make_chunk : int -> input
val is_empty : input -> bool
type !'a t =
| Return of 'a
| Continue of input -> 'a t
val return : 'a -> 'a t
val fail : exn -> 'a
val bind : 'a t -> ('a -> 'b t) -> 'b t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
exception IllegalCharacter
val get : input -> int option t