mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:57:45 +00:00
AK: Add a try_ensure() method to HashMap
This commit is contained in:
parent
a2024cfb69
commit
950b36f95d
1 changed files with 11 additions and 0 deletions
11
AK/HashMap.h
11
AK/HashMap.h
|
@ -222,6 +222,17 @@ public:
|
||||||
return find(key)->value;
|
return find(key)->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<typename Callback>
|
||||||
|
ErrorOr<V> try_ensure(K const& key, Callback initialization_callback)
|
||||||
|
{
|
||||||
|
auto it = find(key);
|
||||||
|
if (it != end())
|
||||||
|
return it->value;
|
||||||
|
auto result = TRY(try_set(key, initialization_callback()));
|
||||||
|
VERIFY(result == HashSetResult::InsertedNewEntry);
|
||||||
|
return find(key)->value;
|
||||||
|
}
|
||||||
|
|
||||||
[[nodiscard]] Vector<K> keys() const
|
[[nodiscard]] Vector<K> keys() const
|
||||||
{
|
{
|
||||||
Vector<K> list;
|
Vector<K> list;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue