Trait bin_tree::IteratorEx
source · pub trait IteratorEx: Iterator + Sizedwhere
Self::Item: Node,{
// Provided method
fn build_tree(self) -> Option<Self::Item> { ... }
}
Expand description
The trait extends the functionality of the standard Iterator
trait by adding
the build_tree
method.