You can search for identifiers within the package.
in-package search v0.2.0
Functorial interface.
module type Point = sig ... end
type vp_heuristic =
| One_band
| Two_bands
Heuristic to find good vantage (reference) points.
type direction =
| Left
| Right
To reach a point in the bst, you need to follow a path. A path is a list of directions.
type step =
| L of float
| R of float
Part of a point's address in the bst.
val string_of_addr : step list -> string
module Make (P : Point) : sig ... end