package ocamlgraph

  1. Overview
  2. Docs
A generic graph library for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocamlgraph-2.0.0.tbz
sha256=20fe267797de5322088a4dfb52389b2ea051787952a8a4f6ed70fcb697482609
sha512=c4973ac03bdff52d1c8a1ed01c81e0fbe2f76486995e57ff4e4a11bcc7b1793556139d52a81ff14ee8c8de52f1b40e4bd359e60a2ae626cc630ebe8bccefb3f1

doc/ocamlgraph/Graph/Gml/index.html

Module Graph.GmlSource

Parser and pretty-printer for GML file format.

Sourcetype value =
  1. | Int of int
  2. | Float of float
  3. | String of string
  4. | List of value_list
Sourceand value_list = (string * value) list

Parser

Sourcemodule Parse (B : Builder.S) (L : sig ... end) : sig ... end

Provide a parser for GML file format.

Pretty-printer

Sourcemodule type G = sig ... end

Signature for graph required by Print. Sub-signature of Sig.G.

Sourcemodule Print (G : G) (L : sig ... end) : sig ... end

Provide a pretty-printer for GML file format.