Hashing concept on A and B key

This commit is contained in:
2026-01-21 09:50:18 +02:00
parent 7405e91874
commit 2556a473cc
2 changed files with 4 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
namespace Tourmaline::Containers {
template <typename T>
concept hashable = requires(T x) {
concept Hashable = requires(T x) {
{ std::hash<T>{x}() } -> std::convertible_to<std::size_t>;
};
} // namespace Tourmaline::Containers