package hg_lib

  1. Overview
  2. Docs
type 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;
}
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val description : t -> string
val tags : t -> string list
val time : t -> Time.t
val author : t -> string
val parents : t -> [ `One of Node.t | `Two of Node.t * Node.t | `Zero ]
val node : t -> Node.t
module Fields : sig ... end
val compare : t -> t -> int
val to_hg_style_string : t -> string