| 609 | } |
| 610 | |
| 611 | FEdge* FGraph::FindEdge(const uint64 Hash) |
| 612 | { |
| 613 | FReadScopeLock ReadScopeLock(GraphLock); |
| 614 | const int32* Index = UniqueEdges.Find(Hash); |
| 615 | if (!Index) { return nullptr; } |
| 616 | return (Edges.GetData() + *Index); |
| 617 | } |
| 618 | |
| 619 | FEdge* FGraph::FindEdge(const int32 A, const int32 B) |
| 620 | { |