package irmin

  1. Overview
  2. No Docs
Irmin, a distributed database that follows the same design principles as Git

Install

dune-project
 Dependency

Authors

Maintainers

Sources

irmin-2.10.2.tbz
sha256=088741b619471c8198e74aaf9f4aeb4a9997abec8b9abcbfb3443fd27bfb433f
sha512=bbc03417d6eb87d99bee391c489d23a586b0a260e4c797f5e2465c3ab67cb627a9efa526097c1b89dd3339eafb8bad738c1cf0502e5c70355871ff7dbba324b9

doc/irmin/Irmin/Dot/index.html

Module Irmin.DotSource

Dot provides functions to export a store to the Graphviz `dot` format.

Parameters

module S : S

Signature

Dot Export

Sourcetype db = S.t
Sourceval output_buffer : db -> ?html:bool -> ?depth:int -> ?full:bool -> date:(int64 -> string) -> Buffer.t -> unit Lwt.t

output_buffer t ?html ?depth ?full buf outputs the Graphviz representation of t in the buffer buf.

html (default is false) enables HTML labels.

depth is used to limit the depth of the commit history. None here means no limitation.

If full is set (default is not) the full graph, including the commits, nodes and contents, is exported, otherwise it is the commit history graph only.