orx-tree 2.2.0

A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(test)]
mod tests;

mod bfs_enumeration;
pub(crate) mod into_iter;
pub(crate) mod into_iter_filtered;
pub(crate) mod iter_mut;
pub(crate) mod iter_ptr;
pub(crate) mod iter_ref;
mod queue;
mod traverser;
mod traverser_core;

pub use bfs_enumeration::BreadthFirstEnumeration;
pub use traverser::Bfs;