Module Store.Value

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 =
| Blob of Blob.t
| Commit of Commit.t
| Tree of Tree.t
| 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 : functor (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