Module Git.User

type tz_offset = {
sign : [ `Plus | `Minus ];
hours : int;
minutes : int;
}
type t = {
name : string;
email : string;
date : int64 * tz_offset option;
}
module A : sig ... end
module M : sig ... end
module D : sig ... end
val pp : t Fmt.t
val compare : t -> t -> int
val hash : t -> int
val equal : t -> t -> bool
module Set : Stdlib.Set.S with type elt = t
module Map : Stdlib.Map.S with type key = t
val length : t -> int64