cpp-msgpack-light 0.3.0
A light library to serialize MessagePack.
|
Class of iterators of arrays to access constant objects. More...
#include <msgpack_light/details/array_iterator.h>
Public Types | |
using | difference_type = std::ptrdiff_t |
Type of differences. | |
using | reference = const_object_ref |
Type of references. | |
using | value_type = const_object_ref |
Type of values. |
Public Member Functions | |
const_array_iterator () noexcept | |
Constructor. | |
const_array_iterator (const details::object_data *pointer) noexcept | |
Constructor. | |
const_object_ref | operator* () const noexcept |
Dereference this iterator. | |
const_array_iterator & | operator++ () noexcept |
Increment this iterator. | |
const const_array_iterator | operator++ (int) noexcept |
Increment this iterator. |
Private Attributes | |
const details::object_data * | pointer_ |
Pointer to the current data. |
Class of iterators of arrays to access constant objects.
Definition at line 118 of file array_iterator.h.
using msgpack_light::const_array_iterator::difference_type = std::ptrdiff_t |
Type of differences.
Definition at line 121 of file array_iterator.h.
Type of references.
Definition at line 127 of file array_iterator.h.
Type of values.
Definition at line 124 of file array_iterator.h.
|
inlinenoexcept |
Constructor.
Definition at line 132 of file array_iterator.h.
|
inlineexplicitnoexcept |
Constructor.
[in] | pointer | Pointer to the current data. |
Definition at line 139 of file array_iterator.h.
|
inlinenoexcept |
Dereference this iterator.
Definition at line 71 of file array_iterator_impl.h.
|
inlinenoexcept |
|
inlinenoexcept |
|
private |
Pointer to the current data.
Definition at line 173 of file array_iterator.h.