mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 08:12:12 +11:00
9 lines
221 B
C++
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;
|
|
};
|