QuickGraph


IMutableEdgeListGraph<'TVertex, 'TEdge>

Namespace: QuickGraph

A mutable edge list graph.

Instance members

Instance memberDescription
AddEdge(edge)
Signature: edge:'TEdge -> bool
Modifiers: abstract

Adds the edge to the graph

AddEdgeRange(edges)
Signature: edges:IEnumerable<'TEdge> -> int
Modifiers: abstract

Adds a set of edges to the graph.

EdgeAdded
Signature: EdgeAction<'TVertex,'TEdge>
Modifiers: abstract

Raised when an edge is added to the graph.

EdgeRemoved
Signature: EdgeAction<'TVertex,'TEdge>
Modifiers: abstract

Raised when an edge has been removed from the graph.

RemoveEdge(edge)
Signature: edge:'TEdge -> bool
Modifiers: abstract

Removes from the graph

RemoveEdgeIf(predicate)
Signature: predicate:EdgePredicate<'TVertex,'TEdge> -> int
Modifiers: abstract

Removes all edges that match .

Fork me on GitHub