Delegate EdgePredicate<TVertex, TEdge>
Delegate to perform a check on the given edge.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public delegate bool EdgePredicate<TVertex, in TEdge>(TEdge edge)
where TEdge : IEdge<TVertex>;
Parameters
| Type | Name | Description |
|---|---|---|
| TEdge | edge | Edge to check condition. |
Returns
| Type | Description |
|---|---|
| System.Boolean | True if the |
Type Parameters
| Name | Description |
|---|---|
| TVertex | Vertex type. |
| TEdge | Edge type. |