nodedb_array/segment/mbr_index/query.rs
1// SPDX-License-Identifier: Apache-2.0
2
3//! Tree traversal for [`super::HilbertPackedRTree`].
4//!
5//! Lives next to [`super::build`] so the build step can stay focused on
6//! arena layout and chunking, and traversal can evolve (e.g. parallel
7//! descent) independently. The tree owns the actual descent logic — this
8//! file is the home for future range/intersect/nn variants.
9
10// Currently empty by design; see `HilbertPackedRTree::query` /
11// `HilbertPackedRTree::descend`. Adding sibling traversals (kNN,
12// nearest-tile, etc.) goes here.