mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:57:44 +00:00
AK: Add the ability to hash the contents of a AK::HashMap
This commit is contained in:
parent
df04283d61
commit
54fe0c8855
1 changed files with 10 additions and 0 deletions
10
AK/HashMap.h
10
AK/HashMap.h
|
@ -165,6 +165,16 @@ public:
|
|||
return list;
|
||||
}
|
||||
|
||||
[[nodiscard]] u32 hash() const
|
||||
{
|
||||
u32 hash = 0;
|
||||
for (auto& it : *this) {
|
||||
auto entry_hash = pair_int_hash(it.key.hash(), it.value.hash());
|
||||
hash = pair_int_hash(hash, entry_hash);
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
private:
|
||||
HashTableType m_table;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue