|
CppCommon 1.0.5.0
C++ Common Library
|
Intrusive queue constant iterator. More...
#include <queue.h>
Public Types | |
| typedef T | value_type |
| typedef value_type & | reference |
| typedef const value_type & | const_reference |
| typedef value_type * | pointer |
| typedef const value_type * | const_pointer |
| typedef ptrdiff_t | difference_type |
| typedef size_t | size_type |
| typedef std::forward_iterator_tag | iterator_category |
Public Member Functions | |
| QueueConstIterator () noexcept | |
| QueueConstIterator (const T *node) noexcept | |
| QueueConstIterator (const QueueIterator< T > &it) noexcept | |
| QueueConstIterator (const QueueConstIterator &it) noexcept=default | |
| QueueConstIterator (QueueConstIterator &&it) noexcept=default | |
| ~QueueConstIterator () noexcept=default | |
| QueueConstIterator & | operator= (const QueueIterator< T > &it) noexcept |
| QueueConstIterator & | operator= (const QueueConstIterator &it) noexcept=default |
| QueueConstIterator & | operator= (QueueConstIterator &&it) noexcept=default |
| QueueConstIterator & | operator++ () noexcept |
| QueueConstIterator | operator++ (int) noexcept |
| const_reference | operator* () const noexcept |
| const_pointer | operator-> () const noexcept |
| operator bool () const noexcept | |
| Check if the iterator is valid. | |
| void | swap (QueueConstIterator &it) noexcept |
| Swap two instances. | |
Friends | |
| bool | operator== (const QueueConstIterator &it1, const QueueConstIterator &it2) noexcept |
| bool | operator!= (const QueueConstIterator &it1, const QueueConstIterator &it2) noexcept |
| template<typename U > | |
| void | swap (QueueConstIterator< U > &it1, QueueConstIterator< U > &it2) noexcept |
Intrusive queue constant iterator.
Not thread-safe.
| typedef const value_type* CppCommon::QueueConstIterator< T >::const_pointer |
| typedef const value_type& CppCommon::QueueConstIterator< T >::const_reference |
| typedef ptrdiff_t CppCommon::QueueConstIterator< T >::difference_type |
| typedef std::forward_iterator_tag CppCommon::QueueConstIterator< T >::iterator_category |
| typedef value_type* CppCommon::QueueConstIterator< T >::pointer |
| typedef value_type& CppCommon::QueueConstIterator< T >::reference |
| typedef size_t CppCommon::QueueConstIterator< T >::size_type |
| typedef T CppCommon::QueueConstIterator< T >::value_type |
|
inlinenoexcept |
|
inlineexplicitnoexcept |
|
inlinenoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
inlineexplicitnoexcept |
|
noexcept |
|
noexcept |
|
inlinenoexcept |
|
noexcept |
|
defaultnoexcept |
|
inlinenoexcept |
|
defaultnoexcept |
|
noexcept |
|
friend |
|
friend |
|
friend |