Looks up an existing key, returning a pointer to its entry (or NULL.)
| 45 | |
| 46 | /// Looks up an existing key, returning a pointer to its entry (or NULL.) |
| 47 | const entry_t* find(key_t key) const noexcept FLPURE {return find(key, hashCode(key));} |
| 48 | const entry_t* find(key_t key, hash_t) const noexcept FLPURE; |
| 49 | |
| 50 | using insertResult = std::pair<entry_t*, bool>; |
nothing calls this directly
no outgoing calls
no test coverage detected