Iterator that is used to locally traverse a base container.
More...
|
| const_local_iterator (void) |
| Create an invalid iterator.
|
|
| const_local_iterator (base_iter_t const &iter, C const *cont) |
| Create a local iterator over a given container starting at a given base container iterator. More...
|
|
base_iter_t | operator-> (void) const |
| Standard operator->() for iterators that returns a pointer to the iterated value.
|
|
Derived & | derived () |
|
Derived const & | derived () const |
|
reference | operator* () const |
|
reference | operator[] (int n) const |
|
Derived & | operator++ () |
|
Derived | operator++ (int) |
|
Derived & | operator-- () |
|
Derived | operator-- (int) |
|
Derived & | operator+= (difference_type n) |
|
Derived & | operator-= (difference_type n) |
|
bool | less_than (iterator_facade const &rhs) const |
|
|
typedef Category | iterator_category |
|
typedef std::remove_const< typename Accessor::value_type >::type | value_type |
|
typedef Difference | difference_type |
|
typedef stub< value_type, Accessor > | pointer |
|
typedef referencer_t::result_type | reference |
|
|
class | iterator_core_access |
|
template<typename C, typename A = use_default>
class stapl::const_local_iterator< C, A >
Iterator that is used to locally traverse a base container.
- Template Parameters
-
Container | Type of the base container |
Accessor | Accessor type used for references (proxies). By default, local_accessor will be chosen. |
- See also
- proxy
◆ const_local_iterator()
template<typename C , typename A = use_default>
Create a local iterator over a given container starting at a given base container iterator.
- Parameters
-
iter | Iterator from the base container to the element |
cont | Pointer to the container |
The documentation for this class was generated from the following file: