 | IWeightedGraphTListOfAdjacentVertices Method |
Returns a list containing the adjacent vertices of a given vertex in this graph.
Namespace: Slash.Collections.GraphsAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
SyntaxList<T> ListOfAdjacentVertices(
T node
)
Function ListOfAdjacentVertices (
node As T
) As List(Of T)
List<T>^ ListOfAdjacentVertices(
T node
)
abstract ListOfAdjacentVertices :
node : 'T -> List<'T>
Parameters
- node
- Type: T
Vertex to get the neighbors of.
Return Value
Type:
ListTList with the neighbors of the given vertex.
See Also