tezos-protocol-011-PtHangz2.environment
Tezos_protocol_environment_011_PtHangz2.Context
tezos-protocol-011-PtHangz2
tezos-protocol-011-PtHangz2.lifted
tezos-protocol-011-PtHangz2.parameters
tezos-protocol-011-PtHangz2.raw
type depth = [
| `Eq of int
| `Ge of int
| `Gt of int
| `Le of int
| `Lt of int
]
module type VIEW = sig ... end
module Kind : sig ... end
module type TREE = sig ... end
type t
type key = string list
type value = bytes
type tree
val mem : t -> key -> bool Lwt.t
val mem_tree : t -> key -> bool Lwt.t
val find : t -> key -> value option Lwt.t
val find_tree : t -> key -> tree option Lwt.t
val list : t -> ?offset:int -> ?length:int -> key -> (string * tree) list Lwt.t
val add : t -> key -> value -> t Lwt.t
val add_tree : t -> key -> tree -> t Lwt.t
val remove : t -> key -> t Lwt.t
val fold : ?depth:depth -> t -> key -> init:'a -> f:(key -> tree -> 'a -> 'a Lwt.t) -> 'a Lwt.t
module Tree : sig ... end
val register_resolver : 'a Base58.encoding -> (t -> string -> 'a list Lwt.t) -> unit
val complete : t -> string -> string list Lwt.t
val get_hash_version : t -> Context_hash.Version.t
val set_hash_version : t -> Context_hash.Version.t -> t Error_monad.shell_tzresult Lwt.t
type cache_key
type cache_value = ..
module type CACHE = sig ... end
module Cache : sig ... end