package tezos-protocol-environment

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

Module Make.ContextSource

View over the context store, restricted to types, access and functional manipulation of an existing context.

Sourcetype t
Sourcetype key = string list

Keys in (kex x value) database implementations

Sourcetype value = MBytes.t

Values in (kex x value) database implementations

Sourceval mem : t -> key -> bool Lwt.t
Sourceval dir_mem : t -> key -> bool Lwt.t
Sourceval get : t -> key -> value option Lwt.t
Sourceval set : t -> key -> value -> t Lwt.t
Sourceval copy : t -> from:key -> to_:key -> t option Lwt.t

copy returns None if the from key is not bound

Sourceval del : t -> key -> t Lwt.t
Sourceval remove_rec : t -> key -> t Lwt.t
Sourceval fold : t -> key -> init:'a -> f:([ `Key of key | `Dir of key ] -> 'a -> 'a Lwt.t) -> 'a Lwt.t
Sourceval keys : t -> key -> key list Lwt.t
Sourceval fold_keys : t -> key -> init:'a -> f:(key -> 'a -> 'a Lwt.t) -> 'a Lwt.t
Sourceval register_resolver : 'a Base58.encoding -> (t -> string -> 'a list Lwt.t) -> unit
Sourceval complete : t -> string -> string list Lwt.t
OCaml

Innovation. Community. Security.