nodedb-array 0.2.1

Shared ND sparse array engine (coordinate-tuple indexed, tile-based) for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

//! Tree traversal for [`super::HilbertPackedRTree`].
//!
//! Lives next to [`super::build`] so the build step can stay focused on
//! arena layout and chunking, and traversal can evolve (e.g. parallel
//! descent) independently. The tree owns the actual descent logic — this
//! file is the home for future range/intersect/nn variants.

// Currently empty by design; see `HilbertPackedRTree::query` /
// `HilbertPackedRTree::descend`. Adding sibling traversals (kNN,
// nearest-tile, etc.) goes here.