Git.User
type tz_offset = {
sign : [ `Plus | `Minus ];
hours : int;
minutes : int;
}
type t = {
name : string;
email : string;
date : int64 * tz_offset option;
val pp : t Fmt.t
Pretty-printer of t.
t
val compare : t -> t -> int
The comparison function for t.
val hash : t -> int
hash blob associates a non-negative integer to any value of t. It is guaranteed that if x = y or compare x y = 0, then hash x = hash y.
hash blob
x = y
compare x y = 0
hash x = hash y
val equal : t -> t -> bool
The equal function for t.
module Set : Stdlib.Set.S with type elt = t
module Map : Stdlib.Map.S with type key = t
val format : t Encore.t
val length : t -> int64