You can search for identifiers within the package.
in-package search v0.2.0
logical
Logical.Type
type variable_name = string
module T : sig ... end
include module type of struct include T end
type t = T.t =
| Int of int
| Float of float
| Str of string
| Bool of bool
| Var of variable_name
val compare : t -> t -> int
val sexp_of_t : t -> Base.Sexp.t
val to_string : t -> string
include sig ... end
type comparator_witness
val comparator : (T.t, comparator_witness) Base__Comparator.t
type state = (variable_name, t, Base.String.comparator_witness) Base.Map.t
type goal = state -> state option Base.Sequence.t