binartree 2.0.2

Binary Tree realisation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// *English*: Library with all modules.
/// User need only tree and iter, so other modules are private.
///
/// *Russian*: Библиотека со всеми модулями.
/// Пользователь использует только самое дерево
/// и итератор, так что незачем давать доступ
/// к другим структурам.

mod branch;
mod node;
mod tests;
pub mod iter;
pub mod tree;