| 35 | enum class hash_t : uint32_t { Empty = 0 }; |
| 36 | |
| 37 | static inline hash_t hashCode(key_t key) FLPURE { |
| 38 | return hash_t( std::max(key.hash(), 1u) ); // hashCode must never be zero |
| 39 | } |
| 40 | |
| 41 | size_t count() const FLPURE {return _count;} |
| 42 | size_t tableSize() const FLPURE {return _size;} |