CCash/include/xxhash_str.h
2021-07-01 23:29:22 -07:00

8 lines
144 B
C++

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