collect_me/
lib.rs

1#![warn(
2    clippy::unwrap_used,
3    rust_2018_idioms,
4    missing_debug_implementations,
5    missing_docs
6)]
7
8//! Extra data-structures relating to data-lookup not defined in the standard library
9
10/// Tree-like data-structures
11pub mod tree;