const iterator for table
More...
#include <iter.hh>
Public Types | |
typedef value_type const * | pointer |
Pointer type. | |
typedef value_type const & | reference |
Reference type. | |
typedef size_t | size_type |
Size type. | |
typedef Value | value_type |
Type of the pointed elements. | |
Public Member Functions | |
const_iter () | |
default crontructor | |
const_iter (iter< Key, Value, Extract, Hash, Equal > const &other) | |
Convertion constructor. | |
bool | operator!= (const_iter const &other) const |
Difference test. | |
reference | operator* () const |
dereference operator | |
const_iter | operator+ (size_type delta) const |
Addition operation. | |
const_iter & | operator++ () |
Pre-incremant operation. | |
const_iter | operator++ (int) |
Post-increment operation. | |
const_iter & | operator+= (size_type delta) |
Advance operation. | |
pointer | operator-> () const |
access operator | |
bool | operator== (const_iter const &other) const |
Equality test. | |
Private Types | |
typedef table< Key, Value, Extract, Hash, Equal > | container_type |
typedef container_type::node_type | node_type |
Private Member Functions | |
const_iter (node_type const *, container_type const *) | |
Private Attributes | |
node_type const * | current |
container_type const * | owner |
Friends | |
class | table |
const iterator for table
This class implements a const iterator for utilmm::hash_toolbox::table
. A const iterator is an iterator with guarantees that it will never modify the container it points to.
typedef table<Key, Value, Extract, Hash, Equal> utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::container_type [private] |
typedef container_type::node_type utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::node_type [private] |
typedef value_type const* utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::pointer |
typedef value_type const& utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::reference |
typedef size_t utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::size_type |
typedef Value utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::value_type |
utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::const_iter | ( | ) |
default crontructor
Create an iterator not attached to any table
utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::const_iter | ( | iter< Key, Value, Extract, Hash, Equal > const & | other | ) |
Convertion constructor.
This constructor is used to make implicit conversion from non cont iterator to const iterator when needed.
other | the instance to copy |
utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::const_iter | ( | node_type const * | , |
container_type const * | |||
) | [private] |
bool utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator!= | ( | const_iter< Key, Value, Extract, Hash, Equal > const & | other | ) | const |
Difference test.
other | The instance to compare |
true | if *this is not equal to other |
false | else |
reference utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator* | ( | ) | const |
dereference operator
const_iter utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator+ | ( | size_type | delta | ) | const |
Addition operation.
delta | distance to add |
This function returns an iterator delta cells after current instance
const_iter& utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator++ | ( | ) |
Pre-incremant operation.
Advance iterator of one cell
const_iter utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator++ | ( | int | ) |
Post-increment operation.
Advance iterator of one cell
const_iter& utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator+= | ( | size_type | delta | ) |
Advance operation.
delta | distance to advance |
This function increments the iterator position of the given distance delta .
*this
after operation pointer utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator-> | ( | ) | const |
access operator
This operator allow user to acces directly to attributes of pointed cell.
bool utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::operator== | ( | const_iter< Key, Value, Extract, Hash, Equal > const & | other | ) | const |
Equality test.
other | The instance to compare |
true | if *this is equal to other |
false | else |
friend class table [friend] |
node_type const* utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::current [private] |
container_type const* utilmm::hash_toolbox::const_iter< Key, Value, Extract, Hash, Equal >::owner [private] |