Add and update todos

This commit is contained in:
2026-04-28 17:29:54 +02:00
parent a8168b35e4
commit 0ae4d486cb
+3 -1
View File
@@ -1,5 +1,7 @@
// TODO: Add functions to reserve memory for vertices and edges. // TODO: Add functions to reserve memory for vertices and edges.
// TODO: Add iterator of edges. // TODO: Add iterator of all edges.
// TODO: Add iterator of incident edges for a vertex.
// TODO: Add finding incident vertices for an edge.
// TODO: Split out GraphTopologyAddition trait. // TODO: Split out GraphTopologyAddition trait.
pub trait GraphTopology { pub trait GraphTopology {
type Vertex: Copy + Eq; type Vertex: Copy + Eq;