sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Dot graph generation.
Note. No support for ports. Should be too hard to add though.
References
val empty : 'a seq
An empty sequence.
edge ~atts id id'
is an edge from id
to id'
with attribute atts
if specified.
nod ~atts id
is a node with id id
and attributes atts
if specified.
atts kind atts
are attributes atts
for kind
.
subgraph ~id sts
is subgraph id
(default unlabelled) with statements sts
.
graph ~id ~strict g sts
is according to g
a graph or digraph id
(default unlabelled) with statements sts
. If strict
is true
(defaults to false
) multi-edges are not created.
val to_string : t -> string
to_string g
is the dot graph g
as a string.
val output : Pervasives.out_channel -> t -> unit
output oc g
outputs the dot graph g
on oc
.