BasicGraph.removeVertex

Remove the given vertex from this graph.

Any edges to the given vertex will be removed.

  1. bool removeVertex(ref Vertex vertex)
    struct BasicGraph(Vertex, EdgeDirection edgeDirection)
    bool
    removeVertex
    (
    ref Vertex vertex
    )
  2. bool removeVertex(Vertex vertex)

Return Value

Type: bool

true if a vertex was removed.

Meta