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

Method clone

src/compute/src/render/reduce.rs:2301–2307  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

2299
2300 impl Clone for ReductionMonoid {
2301 fn clone(&self) -> Self {
2302 use ReductionMonoid::*;
2303 match self {
2304 Min(row) => Min(row.clone()),
2305 Max(row) => Max(row.clone()),
2306 }
2307 }
2308
2309 fn clone_from(&mut self, source: &Self) {
2310 use ReductionMonoid::*;

Callers 11

render_reduceMethod · 0.45
build_distinctMethod · 0.45
build_basic_aggregateMethod · 0.45
build_bucketedMethod · 0.45
build_bucketed_stageMethod · 0.45
build_monotonicMethod · 0.45
build_accumulableMethod · 0.45
newMethod · 0.45
giveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected