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

Method visit_mut_children

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

Source from the content-addressed store, hash-verified

2371 }
2372
2373 fn visit_mut_children<F>(&mut self, mut f: F)
2374 where
2375 F: FnMut(&mut Self),
2376 {
2377 for child in self.children_mut() {
2378 f(child)
2379 }
2380 }
2381
2382 fn try_visit_children<F, E>(&self, mut f: F) -> Result<(), E>
2383 where

Callers

nothing calls this directly

Calls 1

children_mutMethod · 0.45

Tested by

no test coverage detected