Faster version of \ref insert that only inserts new keys. MUST NOT be called if the key already exists in the table!
| 57 | /// Faster version of \ref insert that only inserts new keys. |
| 58 | /// MUST NOT be called if the key already exists in the table! |
| 59 | void insertOnly(key_t key, value_t value) {insertOnly(key, value, hashCode(key));} |
| 60 | void insertOnly(key_t key, value_t value, hash_t); |
| 61 | |
| 62 | void dump() const noexcept; |
nothing calls this directly
no outgoing calls
no test coverage detected