cl-structures: add todo w/r/t tree traversal api

This commit is contained in:
John 2024-03-15 05:53:26 -05:00
parent af35dd1bb3
commit 2cdf112aa6

View File

@ -14,7 +14,7 @@
//! assert_eq!(tree.get(root).unwrap(), &"This is the root node") //! assert_eq!(tree.get(root).unwrap(), &"This is the root node")
//! ``` //! ```
// #![allow(unused)] // TODO: implement an Entry-style API for doing traversal algorithms
pub use self::tree_ref::Ref; pub use self::tree_ref::Ref;
use std::ops::{Index, IndexMut}; use std::ops::{Index, IndexMut};