QuickGraph


IImplicitGraph<'TVertex, 'TEdge>

Namespace: QuickGraph

A implicit directed graph datastructure

Instance members

Instance memberDescription
IsOutEdgesEmpty(v)
Signature: v:'TVertex -> bool
Modifiers: abstract

Determines whether there are out-edges associated to .

OutDegree(v)
Signature: v:'TVertex -> int
Modifiers: abstract

Gets the count of out-edges of

OutEdge(v, index)
Signature: (v:'TVertex * index:int) -> 'TEdge
Modifiers: abstract

Gets the out-edge of at position .

OutEdges(v)
Signature: v:'TVertex -> IEnumerable<'TEdge>
Modifiers: abstract

Gets the out-edges of .

TryGetOutEdges(v, edges)
Signature: (v:'TVertex * edges:byref<IEnumerable<'TEdge>>) -> bool
Modifiers: abstract

Tries to get the out-edges of

Fork me on GitHub