#include <hopscotch_hash.h>
Public Member Functions | |
| hopscotch_iterator (const hopscotch_iterator< false > &other) noexcept | |
| const hopscotch_hash::key_type & | key () const |
| template<class U = ValueSelect, typename std::enable_if< has_mapped_type< U >::value >::type * = nullptr> | |
| std::conditional< is_const, const typename U::value_type &, typename U::value_type & >::type | value () const |
| reference | operator* () const |
| pointer | operator-> () const |
| hopscotch_iterator & | operator++ () |
| hopscotch_iterator | operator++ (int) |
Private Member Functions | |
| hopscotch_iterator (iterator_bucket buckets_iterator, iterator_bucket buckets_end_iterator, iterator_overflow overflow_iterator) noexcept | |
Private Attributes | |
| iterator_bucket | m_buckets_iterator |
| iterator_bucket | m_buckets_end_iterator |
| iterator_overflow | m_overflow_iterator |
Friends | |
| class | hopscotch_hash |
| bool | operator== (const hopscotch_iterator &lhs, const hopscotch_iterator &rhs) |
| bool | operator!= (const hopscotch_iterator &lhs, const hopscotch_iterator &rhs) |
The 'operator*()' and 'operator->()' methods return a const reference and const pointer respectively to the stored value type.
In case of a map, to get a modifiable reference to the value associated to a key (the '.second' in the stored pair), you have to call 'value()'.
Definition at line 688 of file hopscotch_hash.h.