![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <GraphConvert.h>
Public Member Functions | |
| FGraph ()=default | |
| FGraph (const FGraph &)=delete | |
| FGraph & | operator= (const FGraph &)=delete |
| FGraph (FGraph &&)=default | |
| FGraph & | operator= (FGraph &&)=default |
| SIZE_T | GetAllocatedSize () const |
Public Attributes | |
| TArray64< FVertex > | Buffer |
| TArray< TConstArrayView< FVertex > > | EdgeLists |
Convenience structure for storing a graph in edge list form. EdgeLists[i] is a TConstArrayView of edges from Vertex i. Each element of EdgeList[i] is a an FVertex j such that (i, j) is an edge in the graph.
|
default |
|
delete |
|
default |
|
inline |
| TArray<TConstArrayView<FVertex> > UE::Graph::FGraph::EdgeLists |