* Rehash the pairs in the map. this function must be called to create a valid map. */
| 291 | * Rehash the pairs in the map. this function must be called to create a valid map. |
| 292 | */ |
| 293 | FORCEINLINE void Rehash() |
| 294 | { |
| 295 | Map->Rehash(MapLayout, [=](const void* Src) { return KeyInterface->GetValueTypeHash(Src); }); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Convert the keys to an array |
no test coverage detected