Of_storage.M
type key = Key.t
type value = Value.t
find t k
is Some v
if k
is associated to v
in t
and None
is k
is not present in t
.
batch t f
applies the operations in f
in a batch. The exact guarantees depend on the implementation.
val clear : t -> unit
clear t
clears the storage. This operation is expected to be slow.
val close : t -> unit
close t
frees up all the resources associated with t
.