| 884 | [[nodiscard]] inline uint32_t size() const noexcept { return m_numElements; } |
| 885 | [[nodiscard]] inline uint32_t capacity() const noexcept { return m_numBuckets; } |
| 886 | [[nodiscard]] inline bool empty() const noexcept { return (m_numElements == 0); } |
| 887 | |
| 888 | [[nodiscard]] inline bool has(const TKey& key) const noexcept { return (find(key) != iend()); } |
| 889 |