BasicGraph.directedEdgeCount

Return the number of directed edges in this graph in linear time. If this graph is a graph with undirected edges, this will always be double the undirected edge count.

struct BasicGraph(Vertex, EdgeDirection edgeDirection)
@nogc @safe pure nothrow const
size_t
directedEdgeCount
()

Return Value

Type: size_t

The number of directed edges in this graph.

Meta