This class provides forward iterator support to iterate over all the items.
More...
|
|
using | iterator_category = std::forward_iterator_tag |
| |
|
using | value = T |
| |
|
using | pointer = T * |
| |
|
using | reference = T & |
| |
|
using | difference_type = ptrdiff_t |
| |
|
|
pointer | operator-> () |
| |
|
reference | operator* () |
| |
|
iterator & | operator++ () |
| |
|
iterator | operator++ (int) |
| |
|
bool | operator!= (const iterator &other) const |
| |
|
bool | operator== (const iterator &other) const |
| |
|
|
class | TraceConcurrentList |
| |
template<typename T>
class TraceConcurrentList< T >::iterator
This class provides forward iterator support to iterate over all the items.
Definition at line 60 of file concurrentList.h.
The documentation for this class was generated from the following file: