package owee

  1. Overview
  2. Docs
type style = unit
type 'a label = {
  1. label_desc : 'a label_desc;
  2. label_target : 'a;
  3. label_style : style;
}
and 'a label_desc =
  1. | Text of string
  2. | KV of string * string
  3. | Record of 'a label list
type node_id = int
type node = {
  1. node_id : node_id;
  2. node_label : edge list label;
}
and edge = {
  1. edge_target : int;
  2. edge_label : node_id label;
}
module IntMap : sig ... end
type graph = node IntMap.t
module Rewrite : sig ... end