Files
Cubed/include/Cubed/tools/cubed_hash.hpp
2026-04-16 11:55:25 +08:00

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);
}
}