Expand description
Core graph data structure.
Provides an efficient adjacency list representation optimized for:
- Cache locality (dense packing of edges)
- FFI compatibility (repr(C) where beneficial)
- Sparse graph optimization (only stores edges that exist)
- Both directed and undirected graphs
Structsยง
- Graph
- A directed or undirected graph using adjacency list representation.
- Graph
Builder - Builder pattern for constructing graphs.