parent
1f882b9596
commit
7c98d3d4eb
src/Collections
|
@ -61,6 +61,10 @@ namespace Arbutils::Collections {
|
|||
return true;
|
||||
}
|
||||
|
||||
inline void Remove(KeyT key){
|
||||
_map.erase(key);
|
||||
}
|
||||
|
||||
[[nodiscard]] inline size_t Count() const { return _map.size(); }
|
||||
|
||||
inline bool Has(KeyT key) const noexcept { return _map.find(key) != _map.end(); }
|
||||
|
|
Loading…
Reference in New Issue