Skip to main content

Module btree_v2

Module btree_v2 

Source
Expand description

HDF5 B-tree Version 2.

V2 B-trees are used by newer-style groups and datasets for indexed link storage, attribute storage, and chunked dataset indexing. The header (BTHD) describes the tree parameters. Internal nodes (BTIN) and leaf nodes (BTLF) contain the actual records.

This module provides the header parse, record types, and a traversal function that collects all records from a tree.

Structs§

BTreeV2Header
Parsed B-tree v2 header.

Enums§

BTreeV2Record
A record from a B-tree v2.

Functions§

collect_btree_v2_records
Collect all records from a B-tree v2 by traversing from the root.