mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-06-17 16:17:02 +08:00
8 lines
171 B
C++
8 lines
171 B
C++
#pragma once
|
|
#include <string_view>
|
|
namespace HASH {
|
|
inline std::size_t str(std::string_view value) {
|
|
return std::hash<std::string_view>{}(value);
|
|
}
|
|
|
|
} |