You can search for identifiers within the package.
in-package search v0.2.0
module type T = sig ... end
type 'a t
val create : ?branching_factor:int -> ?eq:('a -> 'a -> bool) -> ('a -> 'a -> float) -> 'a t
Create an M-tree.
The branching factor of the tree (default: 32).
An optional equality function for tree elements. If none is provided, then the distance function will be used.
Distance metric between tree elements.
val iter : 'a t -> 'a Iter.t
Iterate over the contents of the tree.
val insert : 'a t -> 'a -> unit
Insert a new point into the tree.
val range : 'a t -> 'a -> radius:float -> 'a Iter.t
Find all points that are within some radius of a query point.
module Private : sig ... end