CCash/include/xxhash_str.h
EntireTwix c9da3eab04 base64
2021-07-02 17:18:37 -07:00

8 lines
153 B
C++

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