Delegate EdgeAction<TVertex, TEdge>
Delegate to perform an action involving the edge
.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public delegate void EdgeAction<TVertex, in TEdge>(TEdge edge)
where TEdge : IEdge<TVertex>;
Parameters
Type | Name | Description |
---|---|---|
TEdge | edge | Edge to treat. |
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |