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

Method apply_children

datafusion/expr/src/logical_plan/tree_node.rs:57–62  ·  view source on GitHub ↗
(
        &'n self,
        f: F,
    )

Source from the content-addressed store, hash-verified

55
56impl TreeNode for LogicalPlan {
57 fn apply_children<'n, F: FnMut(&'n Self) -> Result<TreeNodeRecursion>>(
58 &'n self,
59 f: F,
60 ) -> Result<TreeNodeRecursion> {
61 self.inputs().apply_ref_elements(f)
62 }
63
64 /// Applies `f` to each child (input) of this plan node, rewriting them *in place.*
65 ///

Callers 3

visit_with_subqueriesMethod · 0.45
check_inner_planFunction · 0.45

Calls 2

apply_ref_elementsMethod · 0.80
inputsMethod · 0.45

Tested by

no test coverage detected