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;
  7. files : [ `Omitted | `Files of string list ];
}
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval files : t -> [ `Files of string list | `Omitted ]
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
Sourceval compare : t -> t -> int
Sourceval to_hg_style_string : t -> string
Sourcemodule Template : sig ... end
Sourceval time_of_hgtime : string -> Time.t
Sourceval of_templated_stdout : Base.String.t -> Template.t -> t list Core.Or_error.t