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

Method hash_value

datafusion/expr/src/udf_eq.rs:90–94  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

88 }
89
90 fn hash_value(&self) -> u64 {
91 let hasher = &mut DefaultHasher::new();
92 self.as_ref().dyn_hash(hasher);
93 hasher.finish()
94 }
95}
96
97impl UdfPointer for Arc<dyn HigherOrderUDFImpl + '_> {

Callers 1

hashMethod · 0.45

Calls 4

newFunction · 0.85
dyn_hashMethod · 0.45
as_refMethod · 0.45
finishMethod · 0.45

Tested by

no test coverage detected