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

Function hash

datafusion/expr/src/higher_order_function.rs:1463–1467  ·  view source on GitHub ↗
(value: &T)

Source from the content-addressed store, hash-verified

1461 }
1462
1463 fn hash<T: Hash>(value: &T) -> u64 {
1464 let hasher = &mut DefaultHasher::new();
1465 value.hash(hasher);
1466 hasher.finish()
1467 }
1468
1469 #[derive(Debug, PartialEq, Eq, Hash)]
1470 struct MockArrayReduce {

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…