diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..27ef0f6 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,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; |