457572184c
In this commit, also the semantics for values skipped via the parser callback has changed. Now, the top-level value is returned as “null” instead of “discarded”.
19 lines
412 B
C++
19 lines
412 B
C++
#include <json.hpp>
|
|
|
|
using namespace nlohmann;
|
|
|
|
int main()
|
|
{
|
|
// create a JSON value
|
|
json value = {{"array", {1, 2, 3, 4}}};
|
|
|
|
// create an array_t
|
|
json::array_t array = {"Snap", "Crackle", "Pop"};
|
|
|
|
// swap the array stored in the JSON value
|
|
value["array"].swap(array);
|
|
|
|
// output the values
|
|
std::cout << "value = " << value << '\n';
|
|
std::cout << "array = " << array << '\n';
|
|
}
|