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

Method Hash

cpp/src/arrow/type.cc:919–924  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

917}
918
919size_t DataType::Hash() const {
920 static constexpr size_t kHashSeed = 0;
921 size_t result = kHashSeed;
922 internal::hash_combine(result, this->fingerprint());
923 return result;
924}
925
926std::ostream& operator<<(std::ostream& os, const DataType& type) {
927 os << type.ToString();

Callers 1

ScalarHashImplMethod · 0.45

Calls 1

hash_combineFunction · 0.85

Tested by

no test coverage detected