package git-unix

  1. Overview
  2. Docs
Virtual package to install and configure ocaml-git's Unix backend

Install

dune-project
 Dependency

Authors

Maintainers

Sources

git-2.1.3.tbz
sha256=5d614ae0404a2438c5cee98bf4aa64cee9980e2a382a437acd6ee65dcca6f4de
sha512=9a863552ad7fddfa37d92738dd1c793e888a3c544f97a7634aa9ed5cef1ca22db4e6bfa1908c58986af0bf1dcd665ba63308c1656e68397b7a87f1a09e94fe97

doc/git-unix.top/Git_top/Graph/Store/Value/Tree/index.html

Module Value.Tree

type perm = [
  1. | `Commit
  2. | `Dir
  3. | `Everybody
  4. | `Exec
  5. | `Normal
]
type entry = private {
  1. perm : perm;
  2. name : string;
  3. node : Hash.t;
}
val pp_entry : entry Fmt.t
val entry : string -> perm -> Hash.t -> entry
type t
val remove : name:string -> t -> t
val add : t -> entry -> t
val is_empty : t -> bool
val perm_of_string : string -> perm
val string_of_perm : perm -> string
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
val hashes : t -> Hash.t list
val to_list : t -> entry list
val of_list : entry list -> t
val iter : (entry -> unit) -> t -> unit