Graph<V, E>.undirected constructor

Graph<V, E>.undirected({
  1. StorageStrategy<V>? vertexStrategy,
})

Constructs an undirected graph.

Implementation

factory Graph.undirected({StorageStrategy<V>? vertexStrategy}) =
    UndirectedGraph;