Memory.S
include Storage.STORE
module Deferred : Types.Deferred
module Group : sig ... end
module Array : sig ... end
val hierarchy : t -> (Node.Array.t list * Node.Group.t list) Deferred.t
hierarchy t
returns p
where p
is a pair of lists representing all nodes in store t
. The first element of the pair is a list of all array nodes, and the second element is a list of all group nodes. This operation returns a pair of empty lists if store t
is empty.
val clear : t -> unit Deferred.t
clear t
clears the store t
by deleting all nodes. If the store is already empty, this is a no-op.
val create : unit -> t
create ()
returns a new In-memory Zarr store type.