Move AppendGraph to its own module

This commit is contained in:
2026-04-22 16:31:17 +02:00
parent a939f9b889
commit ee26b7a3e0
4 changed files with 394 additions and 396 deletions
+2
View File
@@ -1,3 +1,5 @@
// TODO: Add functions to reserve memory for vertices and edges.
// TODO: Add iterator of edges.
pub trait GraphTopology {
type Vertex: Copy + Eq;
type Edge;