src/bisection_tree.rs@ac84e995e119
src/bisection_tree.rs
Sat, 22 Oct 2022 22:28:04 +0300
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Sat, 22 Oct 2022 22:28:04 +0300
- changeset 2
- ac84e995e119
- parent 0
-
9f27689eb130
- child 5
-
59dc4c5883f4
- permissions
- -rw-r--r--
Convert iteration utilities to GATs
///
/// Geometrical bisection trees
///
mod supportid;
pub use supportid::*;
mod aggregator;
pub use aggregator::*;
mod either;
pub use either::*;
mod support;
pub use support::*;
mod bt;
pub use bt::*;
mod refine;
pub use refine::*;
mod btfn;
pub use btfn::*;