package git

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type tz_offset = {
  1. sign : [ `Plus | `Minus ];
  2. hours : int;
  3. minutes : int;
}
type t = {
  1. name : string;
  2. email : string;
  3. 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 : Set.S with type elt = t
module Map : Map.S with type key = t
val length : t -> int64