BasicGraph.addEdge

Add an edge to the graph.

New vertices will be added to the graph automatically.

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

Meta