You can search for identifiers within the package.
in-package search v0.2.0
type t = private {
repo : Repo.t;
hash : string;
}
The type for commits.
val v : Repo.t -> string -> t
v repo id builds a fresh t with repo and id.
v repo id
t
repo
id
val pp : t Fmt.t
pp is the pretty-printer for commits.
pp
val pp_hash : string Fmt.t
pp_hash is the pretty-printer for commit hashes which just show the first 8 characters of the hash.
pp_hash
val compare : t -> t -> int
compare compares commits.
compare
val repo : t -> Repo.t
repo t is t's repository.
repo t
val hash : t -> string
hash t is t's SHA1.
hash t
val equal : t -> t -> bool
equal is the equality functions for commits.
equal
module Set : sig ... end
Sets of commits.