QuickGraph


EdgeListGraph<'TVertex, 'TEdge>

Namespace: QuickGraph

Constructors

ConstructorDescription
new()
Signature: unit -> unit
new(isDirected, allowParralelEdges)
Signature: (isDirected:bool * allowParralelEdges:bool) -> unit

Instance members

Instance memberDescription
AddEdge(edge)
Signature: edge:'TEdge -> bool
Modifiers: abstract
AddEdgeRange(edges)
Signature: edges:IEnumerable<'TEdge> -> int
Modifiers: abstract
AddVerticesAndEdge(edge)
Signature: edge:'TEdge -> bool
AddVerticesAndEdgeRange(edges)
Signature: edges:IEnumerable<'TEdge> -> int
AllowParallelEdges
Signature: bool
Modifiers: abstract
Clear()
Signature: unit -> unit
Modifiers: abstract
Clone()
Signature: unit -> EdgeListGraph<'TVertex,'TEdge>
ContainsEdge(edge)
Signature: edge:'TEdge -> bool
Modifiers: abstract
ContainsVertex(vertex)
Signature: vertex:'TVertex -> bool
Modifiers: abstract
EdgeAdded
Signature: EdgeAction<'TVertex,'TEdge>
Modifiers: abstract
EdgeCount
Signature: int
Modifiers: abstract
EdgeRemoved
Signature: EdgeAction<'TVertex,'TEdge>
Modifiers: abstract
Edges
Signature: IEnumerable<'TEdge>
Modifiers: abstract
IsDirected
Signature: bool
Modifiers: abstract
IsEdgesEmpty
Signature: bool
Modifiers: abstract
IsVerticesEmpty
Signature: bool
Modifiers: abstract
RemoveEdge(edge)
Signature: edge:'TEdge -> bool
Modifiers: abstract
RemoveEdgeIf(predicate)
Signature: predicate:EdgePredicate<'TVertex,'TEdge> -> int
Modifiers: abstract
VertexCount
Signature: int
Modifiers: abstract
Vertices
Signature: IEnumerable<'TVertex>
Modifiers: abstract
Fork me on GitHub