- Member nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::JSON_HEDLEY_DEPRECATED_FOR (3.1.0, items()) static iteration_proxy< iterator > iterator_wrapper(reference ref) noexcept
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
- Member nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::JSON_HEDLEY_DEPRECATED_FOR (3.0.0, operator<<(std::ostream &, const basic_json &)) friend std
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use operator<<(std::ostream&, const basic_json&) instead; that is, replace calls like
j >> o;
with o << j;
.