cpp-msgpack-light 0.3.0
A light library to serialize MessagePack.
|
Class of iterators of maps to access non-constant objects. More...
#include <msgpack_light/details/map_iterator.h>
Public Types | |
using | difference_type = std::ptrdiff_t |
Type of differences. | |
using | reference = value_type |
Type of references. | |
using | value_type |
Type of values. |
Public Member Functions | |
mutable_map_iterator () noexcept | |
Constructor. | |
mutable_map_iterator (details::key_value_pair_data *pointer, details::allocator_wrapper< Allocator > *allocator) noexcept | |
Constructor. | |
std::pair< mutable_object_ref< Allocator >, mutable_object_ref< Allocator > > | operator* () const noexcept |
Dereference this iterator. | |
mutable_map_iterator & | operator++ () noexcept |
Increment this iterator. | |
const mutable_map_iterator | operator++ (int) noexcept |
Increment this iterator. |
Private Attributes | |
details::allocator_wrapper< Allocator > * | allocator_ |
Allocator. | |
details::key_value_pair_data * | pointer_ |
Pointer to the current data. |
Class of iterators of maps to access non-constant objects.
Allocator | Type of the allocator. |
Definition at line 45 of file map_iterator.h.
using msgpack_light::mutable_map_iterator< Allocator >::difference_type = std::ptrdiff_t |
Type of differences.
Definition at line 48 of file map_iterator.h.
using msgpack_light::mutable_map_iterator< Allocator >::reference = value_type |
Type of references.
Definition at line 55 of file map_iterator.h.
using msgpack_light::mutable_map_iterator< Allocator >::value_type |
Type of values.
Definition at line 51 of file map_iterator.h.
|
inlinenoexcept |
Constructor.
Definition at line 60 of file map_iterator.h.
|
inlinenoexcept |
Constructor.
[in] | pointer | Pointer to the current data. |
[in] | allocator | Allocator. |
Definition at line 68 of file map_iterator.h.
|
inlinenoexcept |
Dereference this iterator.
Definition at line 36 of file map_iterator_impl.h.
|
inlinenoexcept |
|
inlinenoexcept |
|
private |
Allocator.
Definition at line 107 of file map_iterator.h.
|
private |
Pointer to the current data.
Definition at line 104 of file map_iterator.h.