Object_graph.Make
module Store : sig ... end
type store = Store.t
val keys : K.t -> hash list
keys graph
returns all hashes recheables in the graph graph
.
val of_keys : store -> K.t Lwt.t
of_keys store
makes a new graph from all values of a store
.
val of_commits : store -> K.t Lwt.t
of_commits store
makes a new graph from all commits of a store
.
val closure : ?full:bool -> store -> min:S.t -> max:S.t -> K.t Lwt.t
val to_dot : store -> Stdlib.Format.formatter -> unit Lwt.t