MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / try_visit_mut_children

Method try_visit_mut_children

src/expr/src/relation.rs:2392–2400  ·  view source on GitHub ↗
(&mut self, mut f: F)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

children_mutMethod · 0.45

Tested by

no test coverage detected