package git-unix

  1. Overview
  2. Docs
module Blob : sig ... end
module Commit : sig ... end
module Tree : sig ... end
module Tag : sig ... end
type t = Git.Value.Make(Hash)(Inflate)(Deflate).t =
  1. | Blob of Blob.t
  2. | Commit of Commit.t
  3. | Tree of Tree.t
  4. | Tag of Tag.t
val blob : Blob.t -> t
val commit : Commit.t -> t
val tree : Tree.t -> t
val tag : Tag.t -> t
val kind : t -> [ `Blob | `Commit | `Tag | `Tree ]
val pp_kind : [ `Blob | `Commit | `Tag | `Tree ] Fmt.t
module MakeMeta (Meta : Encore.Meta.S) : sig ... end
module A : sig ... end
module M : sig ... end
module D : sig ... end
module E : sig ... end
val digest : t -> Hash.t
val pp : t Fmt.t
val compare : t -> t -> int
val hash : t -> int
val equal : t -> t -> bool
module Set : sig ... end
module Map : sig ... end
val length : t -> int64