You can search for identifiers within the package.
in-package search v0.2.0
type t = (int, string) Stdlib.Hashtbl.t
type 'a op =
| Add : int * string -> unit op
| Replace : int * string -> unit op
| Remove : int -> unit op
| Find : int -> string op
type wrapped_op =
| Mk : 'a op * 'a Picos.Computation.t -> wrapped_op
type cfg = {
random : bool option;
initial_size : int;
}
val init : ?cfg:cfg -> unit -> ('a, 'b) Stdlib.Hashtbl.t
val run : (int, string) Stdlib.Hashtbl.t -> wrapped_op array -> unit