|
libhatchet
|
#include <hxconstexpr_list.hpp>
Public Member Functions | |
| constexpr | const_iterator (void) |
| constexpr const_iterator & | operator++ (void) |
| constexpr const_iterator | operator++ (int) |
| constexpr const_iterator & | operator-- (void) |
| constexpr const_iterator | operator-- (int) |
| constexpr bool | operator== (const const_iterator &x_) const |
| constexpr const T & | operator* (void) const |
| constexpr const T * | operator-> (void) const |
const_iterator - Bidirectional iterator over const nodes.
|
inlineconstexpr |
Constructs an iterator that must not be incremented or dereferenced.
|
inlineconstexpr |
Returns a const reference to the current node.
|
constexpr |
Post-increment: advances to the next node and returns the prior position.
|
constexpr |
Advances to the next node and returns this iterator.
|
constexpr |
Post-decrement: retreats to the previous node and returns the prior position.
|
constexpr |
Retreats to the previous node and returns this iterator.
|
inlineconstexpr |
Returns a const pointer to the current node.
|
constexpr |
Returns true if both iterators point to the same node.