You can search for identifiers within the package.
in-package search v0.2.0
type t = private {
name : string;
}
The type for GitHub users.
val v : string -> t
v n is the user with name n.
v n
n
val name : t -> string
name t is t's name.
name t
t
val pp : t Fmt.t
pp is the pretty-printer for users.
pp
module Set : SET with type elt = t
Sets of users.
module Map : MAP with type key = t
Maps of users.