From 2cdf112aa6f5352e27548edb35ec37c6ee74d8d5 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 15 Mar 2024 05:53:26 -0500 Subject: [PATCH] cl-structures: add todo w/r/t tree traversal api --- cl-structures/src/tree.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl-structures/src/tree.rs b/cl-structures/src/tree.rs index 897dc31..d6f1c18 100644 --- a/cl-structures/src/tree.rs +++ b/cl-structures/src/tree.rs @@ -14,7 +14,7 @@ //! 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; use std::ops::{Index, IndexMut};