package hg_lib

  1. Overview
  2. Docs

Module Hg_private.Changeset_infoSource

Sourcemodule Public : sig ... end
include module type of struct include Public end
Sourcetype t = Public.t = {
  1. node : Node.t;
  2. parents : [ `Zero | `One of Node.t | `Two of Node.t * Node.t ];
  3. author : string;
  4. time : Time.t;
  5. tags : string list;
  6. description : string;
}
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval description : t -> string
Sourceval tags : t -> string list
Sourceval time : t -> Time.t
Sourceval author : t -> string
Sourceval parents : t -> [ `One of Node.t | `Two of Node.t * Node.t | `Zero ]
Sourceval node : t -> Node.t
Sourcemodule Fields = Public.Fields
Sourceval compare : t -> t -> int
Sourceval to_hg_style_string : t -> string
Sourceval template : string
Sourceval time_of_hgtime : string -> Time.t
Sourceval of_templated_stdout : Base.String.t -> t list Core.Or_error.t