mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-04-10 06:14:07 +08:00
8 lines
163 B
C++
8 lines
163 B
C++
#pragma once
|
|
#include <string>
|
|
namespace HASH {
|
|
inline std::size_t str(const std::string& value) {
|
|
return std::hash<std::string>{}(value);
|
|
}
|
|
|
|
} |