mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05: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;
|
||||
}
|
||||
|
||||
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
|
||||
{
|
||||
Vector<K> list;
|
||||
|
|
Loading…
Reference in a new issue