(&mut self, mut f: F)
| 2390 | } |
| 2391 | |
| 2392 | fn try_visit_mut_children<F, E>(&mut self, mut f: F) -> Result<(), E> |
| 2393 | where |
| 2394 | F: FnMut(&mut Self) -> Result<(), E>, |
| 2395 | { |
| 2396 | for child in self.children_mut() { |
| 2397 | f(child)? |
| 2398 | } |
| 2399 | Ok(()) |
| 2400 | } |
| 2401 | |
| 2402 | fn children<'a>(&'a self) -> impl DoubleEndedIterator<Item = &'a MirRelationExpr> |
| 2403 | where |
nothing calls this directly
no test coverage detected