CCash/include/xxhash_strfunctor.hpp
2021-06-29 15:06:18 -07:00

12 lines
No EOL
227 B
C++

#pragma once
#include <type_traits>
#include <string>
#include <xxhash.h>
struct xxHashStringGen
{
inline uint64_t operator()(const std::string &str) const
{
return XXH3_64bits(str.data(), str.size());
}
};