CCash/include/xxhash_str.h
2021-07-02 22:42:24 -07:00

9 lines
214 B
C++

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