(
&'n self,
f: F,
)
| 1279 | /// (such as [`Arc<dyn PhysicalExpr>`]). |
| 1280 | impl<T: DynTreeNode + ?Sized> TreeNode for Arc<T> { |
| 1281 | fn apply_children<'n, F: FnMut(&'n Self) -> Result<TreeNodeRecursion>>( |
| 1282 | &'n self, |
| 1283 | f: F, |
| 1284 | ) -> Result<TreeNodeRecursion> { |
| 1285 | self.arc_children().into_iter().apply_until_stop(f) |
| 1286 | } |
| 1287 | |
| 1288 | fn map_children<F: FnMut(Self) -> Result<Transformed<Self>>>( |
| 1289 | self, |
no test coverage detected