(
&'n self,
f: F,
)
| 55 | |
| 56 | impl 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 | /// |
no test coverage detected