You can search for identifiers within the package.
in-package search v0.2.0
Types for 3D + value (x, y, z, m) shapes
type point = {
x : float;
y : float;
z : float;
m : float;
}
type bbox = {
xmin : float;
xmax : float;
ymin : float;
ymax : float;
zmin : float;
zmax : float;
mmin : float;
mmax : float;