package plebeia

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

test and debugging purpose

test and debugging purpose

type storage = Storage.t
type node = desc ref
and desc =
  1. | View of view
  2. | Disk of Index.t
and view =
  1. | Leaf of Index.t option ref * Commit_tree.entry
  2. | Internal of Index.t option ref * Segment.t * node * Segment.t * node
val index : node -> Index.t option
module View : sig ... end
module Node : sig ... end
val get : storage -> Node.t -> Segment.segment -> Node.t option
val get_storage : Commit_tree.t -> storage
val get_node : Commit_tree.t -> Node.t