MCPcopy Create free account
hub / github.com/apache/datafusion / f_down

Method f_down

datafusion/common/src/tree_node.rs:1906–1909  ·  view source on GitHub ↗
(&mut self, node: &'n Self::Node)

Source from the content-addressed store, hash-verified

1904 type Node = TestTreeNode<T>;
1905
1906 fn f_down(&mut self, node: &'n Self::Node) -> Result<TreeNodeRecursion> {
1907 self.visits.push(format!("f_down({})", node.data));
1908 (*self.f_down)(node)
1909 }
1910
1911 fn f_up(&mut self, node: &'n Self::Node) -> Result<TreeNodeRecursion> {
1912 self.visits.push(format!("f_up({})", node.data));

Callers 1

visitMethod · 0.45

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected