| 76 | |
| 77 | |
| 78 | void StringTable::clear() noexcept { |
| 79 | ::memset(_hashes, 0, _size * sizeof(hash_t)); |
| 80 | _count = 0; |
| 81 | _maxDistance = 0; |
| 82 | } |
| 83 | |
| 84 | |
| 85 | __hot const StringTable::entry_t* StringTable::find(key_t key, hash_t hash) const noexcept { |
no outgoing calls