BAN: Rewrite HashMap as a wrapper around HashSet

There is really no need to have two implementation of the same thing.
Only difference now is that HashMap's value type has to be movable but
this wasn't an issue
This commit is contained in:
2026-04-21 00:18:18 +03:00
parent a8e496310b
commit 40f3546aca
3 changed files with 192 additions and 285 deletions

View File

@@ -3,6 +3,7 @@
#include <BAN/Endianness.h>
#include <BAN/HashMap.h>
#include <BAN/IPv4.h>
#include <BAN/LinkedList.h>
#include <BAN/String.h>
#include <BAN/StringView.h>
#include <BAN/Vector.h>