You can search for identifiers within the package.
in-package search v0.2.0
oplot
points.ml
1 2 3 4 5 6 7 8 9 10 module Point2 = struct type t = { x : float; y : float } end module Point3 = struct type t = { x : float; y : float; z : float } end type point = Point2.t type point3 = Point3.t
1 2 3 4 5 6 7 8 9 10
module Point2 = struct type t = { x : float; y : float } end module Point3 = struct type t = { x : float; y : float; z : float } end type point = Point2.t type point3 = Point3.t