pub fn pre_order_visit_down<'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 top going down.