You can search for identifiers within the package.
in-package search v0.2.0
module P : COMPARABLE
val (=) : P.t -> P.t -> bool
x = y iff compare x y = 0
x = y
compare x y = 0
val (<>) : P.t -> P.t -> bool
x <> y iff compare x y <> 0
x <> y
compare x y <> 0
val (<) : P.t -> P.t -> bool
x < y iff compare x y < 0
x < y
compare x y < 0
val (<=) : P.t -> P.t -> bool
x <= y iff compare x y <= 0
x <= y
compare x y <= 0
val (>=) : P.t -> P.t -> bool
x >= y iff compare x y >= 0
x >= y
compare x y >= 0
val (>) : P.t -> P.t -> bool
x > y iff compare x y > 0
x > y
compare x y > 0
val compare : P.t -> P.t -> int
compare an alias for the functor parameter's compare function
compare
val equal : P.t -> P.t -> bool
equal x y iff compare x y = 0
equal x y
val max : P.t -> P.t -> P.t
max x y is x if x >= y otherwise it is y
max x y
x
y
val min : P.t -> P.t -> P.t
min x y is x if x <= y otherwise it is y
min x y