package volgo

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

Module Graph.Node_kindSource

Sourcetype t = private
  1. | Root of {
    1. rev : Rev.t;
    }
  2. | Commit of {
    1. rev : Rev.t;
    2. parent : Node.t;
    }
  3. | Merge of {
    1. rev : Rev.t;
    2. parent1 : Node.t;
    3. parent2 : Node.t;
    }
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval equal : t -> t -> bool
Sourceval rev : t -> Rev.t

A helper to access the revision of the node itself. This simply returns the first argument of each constructor.

OCaml

Innovation. Community. Security.