package irmin

  1. Overview
  2. Docs
On This Page
  1. Read-only stores
Legend:
Library
Module
Module type
Parameter
Class
Class type

Read-only stores.

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.

OCaml

Innovation. Community. Security.