You can search for identifiers within the package.
in-package search v0.2.0
Bijection type and composition
module type S = sig ... end
include S
type ('a, 'b) bijection = {
to_ : 'a -> 'b;
from : 'b -> 'a;
}
Bijection record
val flip : ('a, 'b) bijection -> ('b, 'a) bijection
Bijection inversion
val (%) : ('a, 'b) bijection -> ('c, 'a) bijection -> ('c, 'b) bijection
Bijection composition