#pragma once #include #include struct xxHashStringGen { XXH64_hash_t operator()(const std::string &str) const noexcept; XXH64_hash_t operator()(std::string &&str) const noexcept; XXH64_hash_t operator()(std::string_view str) const noexcept; };