You can search for identifiers within the package.
in-package search v0.2.0
type ipv4 = {
address : Ipaddr.V4.t;
netmask : Ipaddr.V4.t;
gateway : Ipaddr.V4.t list;
}
type conf =
| DHCP
| IPv4 of ipv4
type t = {
name : string;
conf : conf option;
val name : t -> string
val packages : t -> mode -> string list
val libraries : t -> mode -> string list
val configure : t -> mode -> main_ml -> unit
val clean : t -> unit