package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Some classic graphs

module type S = sig ... end
module P (G : Sig.P with type V.label = int) : S with type graph = G.t

Classic Persistent Graphs

module I (G : Sig.I with type V.label = int) : S with type graph = G.t

Classic Imperative Graphs