package irmin-pack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
val t : t Irmin.Type.t
type contents = Contents.hash * Contents.value
val contents_t : contents Irmin.Type.t
type node = Node.hash * Node.value
val node_t : node Irmin.Type.t
type commit = Commit.hash * Commit.value
val commit_t : commit Irmin.Type.t
type value = [
  1. | `Commit of commit
  2. | `Contents of contents
  3. | `Node of node
]
val value_t : value Irmin.Type.t
val empty : unit -> t Lwt.t
val add : t -> value -> unit Lwt.t
val iter : t -> (value -> unit Lwt.t) -> unit Lwt.t