mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-04-06 12:01:48 +02:00
Added lookup_ptr method to OAHashMap.
This commit is contained in:
parent
53066a4a82
commit
efddf93a8e
@ -236,6 +236,17 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TValue *lookup_ptr(const TKey &p_key) const {
|
||||||
|
uint32_t pos = 0;
|
||||||
|
bool exists = _lookup_pos(p_key, pos);
|
||||||
|
|
||||||
|
if (exists) {
|
||||||
|
return &values[pos];
|
||||||
|
}
|
||||||
|
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ bool has(const TKey &p_key) const {
|
_FORCE_INLINE_ bool has(const TKey &p_key) const {
|
||||||
uint32_t _pos = 0;
|
uint32_t _pos = 0;
|
||||||
return _lookup_pos(p_key, _pos);
|
return _lookup_pos(p_key, _pos);
|
||||||
|
Loading…
Reference in New Issue
Block a user