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

Method visit_children

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

Source from the content-addressed store, hash-verified

2362
2363impl VisitChildren<Self> for MirRelationExpr {
2364 fn visit_children<F>(&self, mut f: F)
2365 where
2366 F: FnMut(&Self),
2367 {
2368 for child in self.children() {
2369 f(child)
2370 }
2371 }
2372
2373 fn visit_mut_children<F>(&mut self, mut f: F)
2374 where

Callers 2

num_inputsMethod · 0.45
depends_on_intoMethod · 0.45

Calls 1

childrenMethod · 0.65

Tested by

no test coverage detected