mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
9 lines
216 B
C++
9 lines
216 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()(std::string_view &&str) const noexcept;
|
|
};
|