Squashed 'external/json/' content from commit 9cca280a4
git-subtree-dir: external/json git-subtree-split: 9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03
This commit is contained in:
21
docs/examples/operator_ltlt__basic_json.cpp
Normal file
21
docs/examples/operator_ltlt__basic_json.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
||||
int main()
|
||||
{
|
||||
// create JSON values
|
||||
json j_object = {{"one", 1}, {"two", 2}};
|
||||
json j_array = {1, 2, 4, 8, 16};
|
||||
|
||||
// serialize without indentation
|
||||
std::cout << j_object << "\n\n";
|
||||
std::cout << j_array << "\n\n";
|
||||
|
||||
// serialize with indentation
|
||||
std::cout << std::setw(4) << j_object << "\n\n";
|
||||
std::cout << std::setw(2) << j_array << "\n\n";
|
||||
std::cout << std::setw(1) << std::setfill('\t') << j_object << "\n\n";
|
||||
}
|
||||
Reference in New Issue
Block a user