Returns an iterator-range to the out edges of vertex u. */
| 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. */ |
no test coverage detected