You can search for identifiers within the package.
in-package search v0.2.0
Monoid.S is a signature for a monoid (a type `t` with `zero` and `+`), and 'a Monoid.t is the type for monoids represented as first-class modules.
Monoid.S
'a
Monoid.t
module type S = sig ... end
module Addition : S
type 'a t = (module S with type t = 'a)