Iterator to the sparse vector values. More...
#include <sparse_vector.h>
Classes | |
| struct | special |
| Namespace for special initialization. More... | |
Public Types | |
| typedef std::forward_iterator_tag | iterator_category |
| typedef container_t::value_type | value_type |
| typedef container_t::difference_type | difference_type |
| typedef container_t::pointer | pointer |
| typedef container_t::reference | reference |
| typedef vector_t::const_reference | const_reference |
Public Member Functions | |
| const_iterator () | |
| Default constructor, does not iterate anywhere. More... | |
| const_iterator (const container_t &c, size_type offset) | |
| Constructor from a container and a offset. More... | |
| const_iterator (const container_t &c, const typename special::begin) | |
| Special constructor: initializes at the beginning of the container. More... | |
| const_iterator (const container_t &c, const typename special::end) | |
| Special constructor: initializes at the end of the container. More... | |
| const_reference | operator[] (size_type offset) const |
| Random access. More... | |
| const_reference | operator* () const |
| Constant dereferenciation operator. More... | |
| difference_type | operator- (const const_iterator &iter) const |
| Distance operator. More... | |
| range_const_iterator | get_current_range () const |
| Returns the current range internal value; use it at your own risk!! More... | |
| const_iterator & | operator++ () |
| Increment and decrement operators. More... | |
| const_iterator | operator++ (int) |
| const_iterator & | operator+= (difference_type delta) |
| Increment and decrement operators. More... | |
| const_iterator & | operator-= (difference_type delta) |
| const_iterator | operator+ (difference_type delta) const |
| const_iterator | operator- (difference_type delta) const |
| bool | operator== (const const_iterator &as) const |
| Iterator comparisons. More... | |
| bool | operator!= (const const_iterator &as) const |
| bool | operator< (const const_iterator &than) const |
| bool | operator> (const const_iterator &than) const |
| bool | operator<= (const const_iterator &than) const |
| bool | operator>= (const const_iterator &than) const |
Protected Types | |
| typedef sparse_vector< T > | container_t |
| typedef container_t::size_type | size_type |
| typedef container_t::range_list_t::const_iterator | ranges_const_iterator |
Protected Member Functions | |
| void | refresh_state () |
| Reassigns the internal state according to the index. More... | |
Protected Attributes | |
| const container_t * | cont |
| pointer to the container More... | |
| size_type | index |
| pointer to the current value, as absolute index More... | |
| ranges_const_iterator | currentRange |
| pointer to the current (or next) range More... | |
Friends | |
| class | container_t |
Iterator to the sparse vector values.
Definition at line 1431 of file sparse_vector.h.
| typedef vector_t::const_reference lar::sparse_vector< T >::const_iterator::const_reference |
Definition at line 1462 of file sparse_vector.h.
|
protected |
Definition at line 1439 of file sparse_vector.h.
| typedef container_t::difference_type lar::sparse_vector< T >::const_iterator::difference_type |
Definition at line 1457 of file sparse_vector.h.
| typedef std::forward_iterator_tag lar::sparse_vector< T >::const_iterator::iterator_category |
Definition at line 1447 of file sparse_vector.h.
| typedef container_t::pointer lar::sparse_vector< T >::const_iterator::pointer |
Definition at line 1458 of file sparse_vector.h.
|
protected |
Definition at line 1441 of file sparse_vector.h.
| typedef container_t::reference lar::sparse_vector< T >::const_iterator::reference |
Definition at line 1459 of file sparse_vector.h.
|
protected |
Definition at line 1440 of file sparse_vector.h.
| typedef container_t::value_type lar::sparse_vector< T >::const_iterator::value_type |
Definition at line 1456 of file sparse_vector.h.
|
inline |
Default constructor, does not iterate anywhere.
Definition at line 1466 of file sparse_vector.h.
|
inline |
Constructor from a container and a offset.
Definition at line 1469 of file sparse_vector.h.
|
inline |
Special constructor: initializes at the beginning of the container.
Definition at line 1474 of file sparse_vector.h.
|
inline |
Special constructor: initializes at the end of the container.
Definition at line 1479 of file sparse_vector.h.
|
inline |
Returns the current range internal value; use it at your own risk!!
Definition at line 1526 of file sparse_vector.h.
|
inline |
Definition at line 1513 of file sparse_vector.h.
| lar::sparse_vector< T >::const_iterator::const_reference lar::sparse_vector< T >::const_iterator::operator* | ( | ) | const |
Constant dereferenciation operator.
Definition at line 2417 of file sparse_vector.h.
| lar::sparse_vector< T >::const_iterator lar::sparse_vector< T >::const_iterator::operator+ | ( | difference_type | delta | ) | const |
Definition at line 2455 of file sparse_vector.h.
| lar::sparse_vector< T >::const_iterator & lar::sparse_vector< T >::const_iterator::operator++ | ( | ) |
Increment and decrement operators.
Definition at line 2397 of file sparse_vector.h.
|
inline |
Definition at line 1493 of file sparse_vector.h.
| lar::sparse_vector< T >::const_iterator & lar::sparse_vector< T >::const_iterator::operator+= | ( | difference_type | delta | ) |
Increment and decrement operators.
Definition at line 2436 of file sparse_vector.h.
|
inline |
Definition at line 2468 of file sparse_vector.h.
|
inline |
Distance operator.
distance operator
Definition at line 2476 of file sparse_vector.h.
|
inline |
Definition at line 2449 of file sparse_vector.h.
|
inline |
Definition at line 1515 of file sparse_vector.h.
|
inline |
Definition at line 1519 of file sparse_vector.h.
|
inline |
Iterator comparisons.
Definition at line 1511 of file sparse_vector.h.
|
inline |
Definition at line 1517 of file sparse_vector.h.
|
inline |
Definition at line 1521 of file sparse_vector.h.
|
inline |
Random access.
Definition at line 1484 of file sparse_vector.h.
|
protected |
Reassigns the internal state according to the index.
Definition at line 2487 of file sparse_vector.h.
|
friend |
Definition at line 1437 of file sparse_vector.h.
|
protected |
pointer to the container
Definition at line 1559 of file sparse_vector.h.
|
protected |
pointer to the current (or next) range
Definition at line 1561 of file sparse_vector.h.
|
protected |
pointer to the current value, as absolute index
Definition at line 1560 of file sparse_vector.h.
1.8.11