MCPcopy Create free account
hub / github.com/apache/arrow / hash_combine

Function hash_combine

cpp/src/arrow/util/hash_util.h:57–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55
56template <class T>
57inline void hash_combine(std::size_t& seed, const T& v) {
58 std::hash<T> hasher;
59 return ::arrow::internal::detail::hash_combine_impl(seed, hasher(v));
60}
61
62// END Hash utilities from Boost
63// ----------------------------------------------------------------------

Callers 8

HashMethod · 0.85
operator()Method · 0.85
ComputeHashMethod · 0.85
HashMethod · 0.85
HashMethod · 0.85
HashMethod · 0.85
operator()Method · 0.85
ExpressionCacheKeyMethod · 0.85

Calls 2

hash_combine_implFunction · 0.85
hasherClass · 0.85

Tested by

no test coverage detected