| 407 | |
| 408 | template <class VertexType> |
| 409 | std::pair< |
| 410 | typename HashGraph<VertexType>::vertex_iterator, |
| 411 | typename HashGraph<VertexType>::vertex_iterator> |
| 412 | vertices(const HashGraph<VertexType>& g) |
| 413 | { |
| 414 | typedef typename HashGraph<VertexType>::vertex_iterator vertex_iterator; |
| 415 | return std::pair<vertex_iterator, vertex_iterator> |
| 416 | (vertex_iterator(g, false), vertex_iterator(g, true)); |
| 417 | } |
| 418 | |
| 419 | template <class VertexType> |
| 420 | typename HashGraph<VertexType>::vertices_size_type |
no test coverage detected