Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
97
impl UdfPointer for Arc<dyn HigherOrderUDFImpl + '_> {
Callers
1
hash
Method · 0.45
Calls
4
new
Function · 0.85
dyn_hash
Method · 0.45
as_ref
Method · 0.45
finish
Method · 0.45
Tested by
no test coverage detected