BasicGraph.removeEdge

Remove an edge from the graph.

Vertices in the edge will not be removed.

  1. bool removeEdge(ref Vertex left, ref Vertex right)
  2. bool removeEdge(ref Vertex left, Vertex right)
    struct BasicGraph(Vertex, EdgeDirection edgeDirection)
    bool
    removeEdge
    (
    ref Vertex left
    ,
    Vertex right
    )
  3. bool removeEdge(Vertex left, ref Vertex right)
  4. bool removeEdge(Vertex left, Vertex right)

Return Value

Type: bool

true if an edge was removed.

Meta