| 265 | } |
| 266 | |
| 267 | TValue const* Find(TKey const& key) const |
| 268 | { |
| 269 | auto index = FindIndex(key); |
| 270 | if (index == InvalidIndex) return nullptr; |
| 271 | |
| 272 | return &Values[index]; |
| 273 | } |
| 274 | |
| 275 | TValue* Find(TKey const& key) |
| 276 | { |
nothing calls this directly
no outgoing calls
no test coverage detected