package volgo

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

Module Log.LineSource

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