Edge<V, E>.undirected constructor

const Edge<V, E>.undirected(
  1. V source,
  2. V target, {
  3. E? value,
})

Constructs an undirected edge.

Implementation

const factory Edge.undirected(V source, V target, {E? value}) =
    UndirectedEdge<V, E>;