|
Py2Cpp 1.6.3; VERSION ${PROJECT_VERSION}
|
Edge view for Boost Graph Library graphs. More...
#include <nx2bgl.hpp>
Public Member Functions | |
| EdgeView (const Graph &gra) | |
| Construct a new Edge View object. | |
| auto | begin () const |
| Get iterator to the beginning of edges. | |
| auto | end () const |
| Get iterator to the end of edges. | |
| auto | cbegin () const |
| Get const iterator to the beginning of edges. | |
| auto | cend () const |
| Get const iterator to the end of edges. | |
Edge view for Boost Graph Library graphs.
Provides iterable access to edges in a BGL graph. This class holds a reference to a graph and provides iterator interfaces for traversing edges.
| Graph | The Boost Graph Library graph type |
|
inlineexplicit |
Construct a new Edge View object.
Creates an edge view from a reference to an existing graph.
| [in] | gra | Reference to the graph to view edges from |
|
inline |
Get iterator to the beginning of edges.
Returns an iterator to the first edge in the graph.
|
inline |
Get const iterator to the beginning of edges.
Returns a const iterator to the first edge in the graph.
|
inline |
Get const iterator to the end of edges.
Returns a const iterator past the last edge in the graph.
|
inline |
Get iterator to the end of edges.
Returns an iterator past the last edge in the graph.