Add concrete type aliases of VertexMap and EdgeMap for Graph and AppendGraph

This commit is contained in:
2026-07-06 18:49:02 +02:00
parent 266dee783b
commit 1446103d34
3 changed files with 8 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
pub mod append_graph;
pub mod graph;
pub use append_graph::AppendGraph;
pub use graph::Graph;
pub use append_graph::{AppendGraph, AppendGraphEdgeMap, AppendGraphVertexMap};
pub use graph::{Graph, GraphEdgeMap, GraphVertexMap};