MCPcopy Create free account
hub / github.com/apache/datafusion / combine

Method combine

datafusion/common/src/cse.rs:117–122  ·  view source on GitHub ↗
(mut self, other: Option<Self>)

Source from the content-addressed store, hash-verified

115 }
116
117 fn combine(mut self, other: Option<Self>) -> Self {
118 other.map_or(self, |other_id| {
119 self.hash = combine_hashes(self.hash, other_id.hash);
120 self
121 })
122 }
123}
124
125/// A cache that contains the postorder index and the identifier of [`TreeNode`]s by the

Callers 2

pop_enter_markMethod · 0.80
f_upMethod · 0.80

Calls 1

combine_hashesFunction · 0.85

Tested by

no test coverage detected