MCPcopy Create free account
hub / github.com/PCGEx/PCGExtendedToolkit / FindEdge

Method FindEdge

Source/PCGExtendedToolkit/Private/Graph/PCGExGraph.cpp:611–617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 2

FindMethod · 0.80
H64UFunction · 0.50

Tested by

no test coverage detected