package git

  1. Overview
  2. Docs
On This Page
  1. Sets and Maps.
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Git.UserSource

Sourcetype tz_offset = {
  1. sign : [ `Plus | `Minus ];
  2. hours : int;
  3. minutes : int;
}
Sourcetype t = {
  1. name : string;
  2. email : string;
  3. date : int64 * tz_offset option;
}
Sourceval pp : t Fmt.t

Pretty-printer of t.

Sourceval compare : t -> t -> int

The comparison function for t.

Sourceval 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.

Sourceval equal : t -> t -> bool

The equal function for t.

Sets and Maps.

Sourcemodule Set : Set.S with type elt = t
Sourcemodule Map : Map.S with type key = t
Sourceval format : t Encore.t
Sourceval length : t -> int64
OCaml

Innovation. Community. Security.