DKM 4th iteration (tested)

Added Insert and replaced operator[] with Query for clarity, still need to add a delete(and subsequently a tombstoning mechanism)
This commit is contained in:
2026-01-27 21:08:23 +02:00
parent feb9beceb2
commit 5846c5bf34
2 changed files with 59 additions and 37 deletions

View File

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