CppCommon
1.0.4.1
C++ Common Library
|
Hash map reverse iterator. More...
#include <hashmap.h>
Public Types | |
typedef std::pair< TKey, TValue > | 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::bidirectional_iterator_tag | iterator_category |
Public Member Functions | |
HashMapReverseIterator () noexcept | |
HashMapReverseIterator (TContainer *container) noexcept | |
HashMapReverseIterator (TContainer *container, size_t index) noexcept | |
HashMapReverseIterator (const HashMapReverseIterator &it) noexcept=default | |
HashMapReverseIterator (HashMapReverseIterator &&it) noexcept=default | |
~HashMapReverseIterator () noexcept=default | |
HashMapReverseIterator & | operator= (const HashMapReverseIterator &it) noexcept=default |
HashMapReverseIterator & | operator= (HashMapReverseIterator &&it) noexcept=default |
HashMapReverseIterator & | operator++ () noexcept |
HashMapReverseIterator | operator++ (int) noexcept |
reference | operator* () noexcept |
pointer | operator-> () noexcept |
operator bool () const noexcept | |
Check if the iterator is valid. More... | |
void | swap (HashMapReverseIterator &it) noexcept |
Swap two instances. More... | |
Friends | |
bool | operator== (const HashMapReverseIterator &it1, const HashMapReverseIterator &it2) noexcept |
bool | operator!= (const HashMapReverseIterator &it1, const HashMapReverseIterator &it2) noexcept |
template<class UContainer , typename UKey , typename UValue > | |
void | swap (HashMapReverseIterator< UContainer, UKey, UValue > &it1, HashMapReverseIterator< UContainer, UKey, UValue > &it2) noexcept |
Hash map reverse iterator.
Not thread-safe.
typedef const value_type* CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::const_pointer |
typedef const value_type& CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::const_reference |
typedef ptrdiff_t CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::difference_type |
typedef std::bidirectional_iterator_tag CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::iterator_category |
typedef value_type* CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::pointer |
typedef value_type& CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::reference |
typedef size_t CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::size_type |
typedef std::pair<TKey, TValue> CppCommon::HashMapReverseIterator< TContainer, TKey, TValue >::value_type |
|
inlinenoexcept |
|
inlineexplicitnoexcept |
Definition at line 503 of file hashmap.inl.
|
inlineexplicitnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
inlineexplicitnoexcept |
|
noexcept |
Definition at line 561 of file hashmap.inl.
|
noexcept |
Definition at line 531 of file hashmap.inl.
|
inlinenoexcept |
Definition at line 553 of file hashmap.inl.
|
noexcept |
Definition at line 569 of file hashmap.inl.
|
defaultnoexcept |
|
defaultnoexcept |
|
noexcept |
Swap two instances.
Definition at line 575 of file hashmap.inl.
|
friend |
|
friend |
|
friend |