ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
|
#include <acts/blob/master/thirdparty/nlohmann_json/single_include/nlohmann/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 |
using | string_type = typename std::remove_cv< typename std::remove_reference< decltype(std::declval< IteratorType >().key()) >::type >::type |
Public Member Functions | |
iteration_proxy_value (IteratorType it) noexcept | |
iteration_proxy_value & | operator* () |
dereference operator (needed for range-based for) | |
iteration_proxy_value & | operator++ () |
increment operator (needed for range-based for) | |
bool | operator== (const iteration_proxy_value &o) const |
equality operator (needed for InputIterator) | |
bool | operator!= (const iteration_proxy_value &o) const |
inequality operator (needed for range-based for) | |
const string_type & | key () const |
return key of the iterator | |
IteratorType::reference | value () const |
return value of the iterator | |
Private Attributes | |
IteratorType | anchor |
the iterator | |
std::size_t | array_index = 0 |
an index for arrays (used to create key names) | |
std::size_t | array_index_last = 0 |
last stringified array index | |
string_type | array_index_str = "0" |
a string representation of the array index | |
const string_type | empty_str = "" |
an empty string (to return a reference for primitive values) | |
Definition at line 3297 of file json.hpp.
View newest version in sPHENIX GitHub at line 3297 of file json.hpp
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 >::string_type = typename std::remove_cv< typename std::remove_reference<decltype( std::declval<IteratorType>().key() ) >::type >::type |
using nlohmann::detail::iteration_proxy_value< IteratorType >::value_type = iteration_proxy_value |
|
inlineexplicitnoexcept |
|
inline |
return key of the iterator
Definition at line 3350 of file json.hpp.
View newest version in sPHENIX GitHub at line 3350 of file json.hpp
References nlohmann::detail::int_to_string().
Referenced by __example_4.f__(), __example_5.f__(), __example_6.f__(), __example_7.f__(), __example_8.f__(), nlohmann::detail::get(), and uginit().
|
inline |
inequality operator (needed for range-based for)
Definition at line 3344 of file json.hpp.
View newest version in sPHENIX GitHub at line 3344 of file json.hpp
References nlohmann::detail::iteration_proxy_value< IteratorType >::anchor.
|
inline |
|
inline |
|
inline |
equality operator (needed for InputIterator)
Definition at line 3338 of file json.hpp.
View newest version in sPHENIX GitHub at line 3338 of file json.hpp
References nlohmann::detail::iteration_proxy_value< IteratorType >::anchor.
|
inline |
|
private |
the iterator
Definition at line 3309 of file json.hpp.
View newest version in sPHENIX GitHub at line 3309 of file json.hpp
Referenced by nlohmann::detail::iteration_proxy_value< IteratorType >::operator!=(), and nlohmann::detail::iteration_proxy_value< IteratorType >::operator==().
|
private |
|
mutableprivate |
|
mutableprivate |
|
private |