Return the edges incident to the vertex according to the provided direction and edge labels.
Namespace:
VelocityGraph.Frontenac.Blueprints
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax IEnumerable<IEdge> GetEdges(
Direction direction,
params string[] labels
)
Function GetEdges (
direction As Direction,
ParamArray labels As String()
) As IEnumerable(Of IEdge)
IEnumerable<IEdge^>^ GetEdges(
Direction direction,
... array<String^>^ labels
)
abstract GetEdges :
direction : Direction *
labels : string[] -> IEnumerable<IEdge>
Parameters
- direction
- Type: VelocityGraph.Frontenac.BlueprintsDirection
the direction of the edges to retrieve - labels
- Type: SystemString
the labels of the edges to retrieve
Return Value
Type:
IEnumerableIEdgean IEnumerable of incident edges
See Also