package mirage-btrees

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

Module type Node.NODESource

Sourcetype t
Sourcetype pointer
Sourcetype key
Sourcetype value
Sourceval create : int -> t
Sourceval noKeys : t -> int
Sourceval setNoKeys : t -> int -> unit
Sourceval minDegree : t -> int
Sourceval pageSize : t -> int
Sourceval leaf : t -> bool
Sourceval setLeaf : t -> bool -> unit
Sourceval getChild : t -> int -> pointer
Sourceval setChild : t -> int -> pointer -> unit
Sourceval getKey : t -> int -> key
Sourceval setKey : t -> int -> key -> unit
Sourceval getValue : t -> int -> value
Sourceval setValue : t -> int -> value -> unit
Sourceval getKeys : t -> key list
Sourceval printKeys : t -> string list
Sourceval getValues : t -> value list
Sourceval printValues : t -> string list