BasicGraph.removeEdge

Remove an edge from the graph.

Vertices in the edge will not be removed.

  1. bool removeEdge(Vertex left, Vertex right)
  2. bool removeEdge(Vertex left, Vertex right)
  3. bool removeEdge(Vertex left, Vertex right)
    struct BasicGraph(Vertex, EdgeDirection edgeDirection)
    @nogc @safe pure nothrow
    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