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

Method children

src/sql/src/plan/hir.rs:384–392  ·  view source on GitHub ↗
(&'a self)

Source from the content-addressed store, hash-verified

382 }
383
384 fn children<'a>(&'a self) -> impl DoubleEndedIterator<Item = &'a HirScalarExpr>
385 where
386 HirScalarExpr: 'a,
387 {
388 self.func
389 .children()
390 .chain(self.partition_by.iter())
391 .chain(self.order_by.iter())
392 }
393
394 fn children_mut<'a>(&'a mut self) -> impl DoubleEndedIterator<Item = &'a mut HirScalarExpr>
395 where

Callers

nothing calls this directly

Calls 10

direct_subqueriesMethod · 0.80
childrenMethod · 0.65
iterMethod · 0.45
into_iterMethod · 0.45
collectMethod · 0.45
pushMethod · 0.45
extendMethod · 0.45
mapMethod · 0.45
appendMethod · 0.45
flattenMethod · 0.45

Tested by

no test coverage detected