| 65 | StringTable(size_t capacity, |
| 66 | size_t initialSize, hash_t *initialHashes, entry_t *initialEntries); |
| 67 | inline size_t wrap(size_t i) const {return i & _sizeMask;} |
| 68 | inline size_t indexOfHash(hash_t h) const {return wrap(size_t(h));} |
| 69 | insertResult _insert(hash_t, entry_t) noexcept; |
| 70 | void _insertOnly(hash_t, entry_t) noexcept; |
nothing calls this directly
no outgoing calls
no test coverage detected