Enumerates all the edges of the given type between two given nodes (tail and head).
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IEdge> Edges(
EdgeType etype,
Vertex tail,
Vertex head
)
Public Function Edges (
etype As EdgeType,
tail As Vertex,
head As Vertex
) As IEnumerable(Of IEdge)
public:
IEnumerable<IEdge^>^ Edges(
EdgeType^ etype,
Vertex^ tail,
Vertex^ head
)
member Edges :
etype : EdgeType *
tail : Vertex *
head : Vertex -> IEnumerable<IEdge>
Parameters
- etype
- Type: VelocityGraphEdgeType
Type of Edge - tail
- Type: VelocityGraphVertex
Outgoing Vertex - head
- Type: VelocityGraphVertex
Incoming Vertex
Return Value
Type:
IEnumerableIEdgeEnumeration of Edge
See Also