You can search for identifiers within the package.
in-package search v0.2.0
statocaml_profile
Statocaml_profile.Subsys
Subsystems
module GH = Statocaml_github
module type P = sig ... end
module type S = sig ... end
module Make (P : P) : S with type t = P.t
module Smap = Statocaml.Smap
val subsys_map_wrapper : 'a Ocf.Wrapper.t -> 'a Smap.t Ocf.Wrapper.t
type re = Re.re
val re_wrapper : Re.re Ocf.Wrapper.t
type subsys = {
label : string;
color : string;
}
val default_subsys : subsys
val subsys_wrapper : subsys Ocf.Wrapper.t
type rule = {
re_path : re list;
ids : string list;
val default_rule : rule
val rule_wrapper : rule Ocf.Wrapper.t
type desc = {
subsystems : subsys Smap.t;
rules : rule list;
val default_desc : desc
val desc_wrapper : desc Ocf.Wrapper.t
val from_file : string -> (module P)
module Empty : P
val empty : (module P)