You can search for identifiers within the package.
in-package search v0.2.0
module type FUNCTOR = sig ... end
type (+'a, 't) io
type ('l, 'r) either =
| L of 'l
| R of 'r
type 't impl = {
bind : 'a 'b. ('a, 't) io -> ('a -> ('b, 't) io) -> ('b, 't) io;
return : 'a. 'a -> ('a, 't) io;
}
type ('flow, 's) rdwr = {
rd : 'flow -> bytes -> int -> int -> ([ `End | `Len of int ], 's) io;
wr : 'flow -> string -> int -> int -> (unit, 's) io;
module type X = sig ... end
module Make (T : FUNCTOR) : X with type 'a s = 'a T.t