All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Member Functions
Graph::EdgeIt Class Reference

Detailed Description

This iterator goes through each edge of the graph. Its usage is quite simple, for example, you can count the number of edges in a graph g of type Graph as follows:

int count=0;
for(Graph::EdgeIt e(g); e!=INVALID; ++e) ++count;

#include <lemon/concepts/graph.h>

+ Inheritance diagram for Graph::EdgeIt:

Public Member Functions

 EdgeIt ()
 Default constructor.
 
 EdgeIt (const EdgeIt &e)
 
 EdgeIt (Invalid)
 Invalid constructor & conversion.
 
 EdgeIt (const Graph &)
 Sets the iterator to the first edge.
 
 EdgeIt (const Graph &, const Edge &)
 Sets the iterator to the given edge.
 
EdgeItoperator++ ()
 Next edge.
 
- Public Member Functions inherited from Graph::Edge
 Edge ()
 Default constructor.
 
 Edge (const Edge &)
 
 Edge (Invalid)
 Invalid constructor & conversion.
 
bool operator== (Edge) const
 Equality operator.
 
bool operator!= (Edge) const
 
bool operator< (Edge) const
 Artificial ordering operator.
 

Constructor & Destructor Documentation

EdgeIt ( )
inline

Default constructor.

Warning
It sets the iterator to an undefined value.
EdgeIt ( const EdgeIt e)
inline

Copy constructor.

EdgeIt ( Invalid  )
inline

Initializes the iterator to be invalid.

See Also
Invalid for more details.
EdgeIt ( const Graph )
inlineexplicit

Sets the iterator to the first edge of the given graph.

EdgeIt ( const Graph ,
const Edge  
)
inline

Sets the iterator to the given edge of the given graph.

Member Function Documentation

EdgeIt& operator++ ( )
inline

Assign the iterator to the next edge.