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

Function hash

datafusion/expr/src/udf_eq.rs:204–208  ·  view source on GitHub ↗
(value: T)

Source from the content-addressed store, hash-verified

202 }
203
204 fn hash<T: Hash>(value: T) -> u64 {
205 let hasher = &mut DefaultHasher::new();
206 value.hash(hasher);
207 hasher.finish()
208 }
209}

Callers

nothing calls this directly

Calls 3

newFunction · 0.85
hashMethod · 0.45
finishMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…