You can search for identifiers within the package.
in-package search v0.2.0
Algorithms to layout trees in a pretty manner.
type pos = {
x : float;
y : float;
}
A position (or a size).
module type S = sig ... end
The output signature for a certain layout engine.
module type TREE = sig ... end
The input signature for Make
Make
module Make (G : TREE) : S with type t := G.t and type vertex := G.V.t
Define layout engines.