package irmin

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

A history forms a store of commits.

include STORE with type t = t and type key = commit

Commit Store

include AO with type t = t with type key = commit

Append-only stores

include RO with type t = t with type key = commit

Read-only stores

type t = t

Type for stores.

type key = commit

Type for keys.

type value

Type for values.

val read : t -> key -> value option Lwt.t

Read a value from the store.

val read_exn : t -> key -> value Lwt.t

Same as read but raise Invalid_argument if the key does not exist.

val mem : t -> key -> bool Lwt.t

Check if a key exists.

val iter : t -> (key -> value Lwt.t -> unit Lwt.t) -> unit Lwt.t

iter t fn call the function fn on all t's keys and values.

val add : t -> value -> key Lwt.t

Write the contents of a value to the store. It's the responsibility of the append-only store to generate a consistent key.

module Key : Hash.S with type t = key

Key provides base functions for commit keys.

module Val : S with type t = value and type commit := key

Val provides functions for commit values.

module Path : Ir_s.PATH
val merge : Path.t -> t -> task:task -> key option Merge.t
OCaml

Innovation. Community. Security.