blob: 27ef0f6f51fb6c7c16d99e1e3ae53f28360ecbea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Rust implementation of a binary tree.
//!
//! Work in progress.
//!
//! TODOS::
//! - Understanding how complex borrows work
//! - Apply correct value lifetime declarations
//! - Make it efficient by implementing borrow
//! - Removing requirement for `Copy` trait
mod tree;
pub use tree::{Tree, TreeNode};
#[cfg(test)]
mod tests;
|