CCash/include/xxhash_str.h
2021-07-11 20:38:39 -07:00

9 lines
221 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()(const std::string_view &str) const noexcept;
};