 | IWeightedGraphTHasEdge Method |
Checks if there is an edge between two vertices of this graph.
Namespace: Slash.Collections.GraphsAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxbool HasEdge(
T firstNode,
T secondNode
)
Function HasEdge (
firstNode As T,
secondNode As T
) As Boolean
bool HasEdge(
T firstNode,
T secondNode
)
abstract HasEdge :
firstNode : 'T *
secondNode : 'T -> bool
Parameters
- firstNode
- Type: T
First vertex to check. - secondNode
- Type: T
Second vertex to check.
Return Value
Type:
BooleanTrue if there is an edge, and false otherwise.
See Also