package hg_lib

  1. Overview
  2. Docs
module Public : sig ... end
include module type of struct include Public end
type t = Public.t = {
  1. active : bool;
  2. name : string;
  3. revision_id : string;
}
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val revision_id : t -> string
val name : t -> string
val active : t -> bool
module Fields = Public.Fields
val of_lines : Core.String.t list -> t list