MCPcopy Create free account
hub / github.com/apache/arrow / operator()

Method operator()

cpp/src/arrow/util/hashing.h:983–985  ·  view source on GitHub ↗

std::hash compatible hasher for use with std::unordered_ (the std::hash specialization provided by nonstd constructs std::string temporaries then invokes std::hash against those)

Source from the content-addressed store, hash-verified

981 // (the std::hash specialization provided by nonstd constructs std::string
982 // temporaries then invokes std::hash<std::string> against those)
983 hash_t operator()(std::string_view value) const {
984 return ComputeStringHash<0>(value.data(), static_cast<int64_t>(value.size()));
985 }
986};
987
988} // namespace internal

Callers

nothing calls this directly

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected