| 414 | } |
| 415 | |
| 416 | uint64 FUnionData::Add(const int32 IOIndex, const int32 PointIndex) |
| 417 | { |
| 418 | const uint64 H = PCGEx::H64(IOIndex, PointIndex); |
| 419 | |
| 420 | { |
| 421 | FWriteScopeLock WriteScopeLock(UnionLock); |
| 422 | IOIndices.Add(IOIndex); |
| 423 | ItemHashSet.Add(H); |
| 424 | } |
| 425 | |
| 426 | return H; |
| 427 | } |
| 428 | |
| 429 | void FUnionData::Add(const int32 IOIndex, const TArray<int32>& PointIndices) |
| 430 | { |
no test coverage detected