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