pre_order_visit_up

Function pre_order_visit_up 

Source
pub fn pre_order_visit_up<'a, T: 'a + Node>(
    tree: &'a T,
    f: impl FnMut(&'a T) -> VortexResult<TraversalOrder>,
) -> VortexResult<()>
Expand description

Traverse a Node-based tree using a closure. It will do it by walking the tree from the bottom going up.