MCPcopy Create free account
hub / github.com/BirolLab/abyss / out_edges

Method out_edges

Graph/DirectedGraph.h:384–390  ·  view source on GitHub ↗

Returns an iterator-range to the out edges of vertex u. */

Source from the content-addressed store, hash-verified

382
383 /** Returns an iterator-range to the out edges of vertex u. */
384 std::pair<out_edge_iterator, out_edge_iterator>
385 out_edges(vertex_descriptor u) const
386 {
387 vertices_size_type ui = get(vertex_index, *this, u);
388 assert(ui < num_vertices());
389 return m_vertices[ui].out_edges(u);
390 }
391
392 /** Returns an iterator-range to the adjacent vertices of
393 * vertex u. */

Callers 1

out_edgesFunction · 0.45

Calls 2

getFunction · 0.70
num_verticesFunction · 0.70

Tested by

no test coverage detected