Recursively rewrite the node's children and then the node using `f` (a bottom-up post-order traversal). A synonym of [`Self::transform_up`].
(
self,
f: F,
)
| 213 | /// |
| 214 | /// A synonym of [`Self::transform_up`]. |
| 215 | fn transform<F: FnMut(Self) -> Result<Transformed<Self>>>( |
| 216 | self, |
| 217 | f: F, |
| 218 | ) -> Result<Transformed<Self>> { |
| 219 | self.transform_up(f) |
| 220 | } |
| 221 | |
| 222 | /// Recursively rewrite the tree using `f` in a top-down (pre-order) |
| 223 | /// fashion. |