CellModules
|
#include <json.hpp>
Public Types | |
using | difference_type = std::ptrdiff_t |
using | value_type = iteration_proxy_value |
using | pointer = value_type * |
using | reference = value_type & |
using | iterator_category = std::input_iterator_tag |
Public Member Functions | |
iteration_proxy_value (IteratorType it) noexcept | |
iteration_proxy_value & | operator* () |
dereference operator (needed for range-based for) More... | |
iteration_proxy_value & | operator++ () |
increment operator (needed for range-based for) More... | |
bool | operator== (const iteration_proxy_value &o) const |
equality operator (needed for InputIterator) More... | |
bool | operator!= (const iteration_proxy_value &o) const |
inequality operator (needed for range-based for) More... | |
const std::string & | key () const |
return key of the iterator More... | |
IteratorType::reference | value () const |
return value of the iterator More... | |
Private Attributes | |
IteratorType | anchor |
the iterator More... | |
std::size_t | array_index = 0 |
an index for arrays (used to create key names) More... | |
std::size_t | array_index_last = 0 |
last stringified array index More... | |
std::string | array_index_str = "0" |
a string representation of the array index More... | |
const std::string | empty_str = "" |
an empty string (to return a reference for primitive values) More... | |
using nlohmann::detail::iteration_proxy_value< IteratorType >::difference_type = std::ptrdiff_t |
using nlohmann::detail::iteration_proxy_value< IteratorType >::iterator_category = std::input_iterator_tag |
using nlohmann::detail::iteration_proxy_value< IteratorType >::pointer = value_type * |
using nlohmann::detail::iteration_proxy_value< IteratorType >::reference = value_type & |
using nlohmann::detail::iteration_proxy_value< IteratorType >::value_type = iteration_proxy_value |
|
inlineexplicitnoexcept |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
private |
|
private |
|
mutableprivate |
|
mutableprivate |
|
private |