package irmin-indexeddb

  1. Overview
  2. Docs

Private nodes.

include Irmin.AO

Append-only stores

include Irmin.RO

Read-only stores

type t

Type for stores.

type key

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 Path = Contents.Path

Step provides base functions on node steps.

module Key : Irmin.Hash.S with type t = key

Key provides base functions for node keys.

module Val : Irmin.Private.Node.S with type t = value and type node = key and type step = Path.step with type contents = Contents.key

Val provides base functions for node values.