AdjacencyList.outEdges

Lists the outbound edges of a given vertex.

struct AdjacencyList(alias VertexStorage = VecS, alias EdgeStorage = VecS, Directionality = DirectedS, VertexProperty = NoProperty, EdgeProperty = NoProperty)
const
outEdges

Parameters

vertex VertexDescriptor

The descriptor of the vertex to query.

Return Value

Type: auto

Returns a range containing the edge descriptors of the supplied vertex's outbound edges.

Meta