CCash/include/xxhash_str.h
2021-07-04 22:48:24 -07:00

8 lines
148 B
C++

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