Xbase.Types.CdxNode (Xbase v0.1.0)
View SourceCDX B-tree node structure representing a page in the index tree.
Each node is 512 bytes and can be a root, branch, or leaf node containing keys and pointers for B-tree navigation.
Summary
Types
@type t() :: %Xbase.Types.CdxNode{ attributes: integer(), key_count: non_neg_integer(), keys: [binary()], left_brother: integer(), node_type: :root | :branch | :leaf, pointers: [integer()] }