#include <lemon/concepts/bpugraph.h>
Public Member Functions | |
ANode () | |
Default constructor. | |
ANode (const ANode &) | |
ANode (const Node &) | |
Construct the same node as ANode. | |
ANode & | operator= (const Node &) |
Assign node to A-node. | |
ANode (Invalid) | |
Invalid constructor & conversion. | |
bool | operator== (ANode) const |
Equality operator. | |
bool | operator!= (ANode) const |
Inequality operator. | |
bool | operator< (ANode) const |
Artificial ordering operator. |
ANode | ( | ) | [inline] |
This constructor initializes the iterator to be invalid.
Besides the core graph item functionality each node should be convertible to the represented A-node if it is it possible.
bool operator== | ( | ANode | ) | const [inline] |
Two iterators are equal if and only if they point to the same object or both are invalid.
bool operator!= | ( | ANode | ) | const [inline] |
bool operator< | ( | ANode | ) | const [inline] |
To allow the use of graph descriptors as key type in std::map or similar associative container we require this.