To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Algorithms to layout trees in a pretty manner.
N-ary trees
type 'a tree =
| Node of 'a * 'a tree array
(*A n-ary tree.
For correct usage in the next functions, the labels of the nodes should always contain a unique identifier.
*)
val layered :
?m:(module Hashtbl.HashedType with type t = 'a) ->
distance:('a tree -> 'a tree -> float) ->
'a tree ->
('a * Common.pos) tree
Layered trees
See Tree_layout.Layered
for details.
val treemap :
?m:(module Hashtbl.HashedType with type t = 'a) ->
area:('a tree -> float) ->
Common.rectangle ->
'a tree ->
('a * Common.rectangle) tree
Treemaps
See Tree_layout.Treemaps
for details.
Individual algorithms
module Common : sig ... end
Common types
module Layered : sig ... end
Layered trees
module Treemaps : sig ... end
Squarified Treemaps
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page