pub fn walk_children(node: &SNode, visitor: &mut impl FnMut(&SNode))Expand description
Recurse into node’s children without re-visiting node itself.
Useful when a caller wants to handle the parent specially and then
continue the default traversal.