flange_flat_tree/navigator/
mod.rs

1/*! The navigator is basically a tree
2without values.
3It implements the structure and logic
4on how the tree is build and how nodes find
5there parents as well as their children.
6
7How the navigator does this, is an implementation detail.
8Currently it stores an vector of neighboring information,
9but don't be sure that this documentation changes when
10that is changed.
11*/
12
13mod builder;
14mod navigator_impl;
15mod neighbors;
16
17// We use the navigator and builder only in this crate!
18pub use builder::Builder;
19pub use navigator_impl::Navigator;
20pub use neighbors::Neighbors;