2 #include <nlohmann/json.hpp>
10 json j_boolean =
true;
11 json j_number_integer = -17;
12 json j_number_unsigned = 42u;
13 json j_number_float = 23.42;
14 json j_object = {{
"one", 1}, {
"two", 2}};
15 json j_array = {1, 2, 4, 8, 16};
16 json j_string =
"Hello, world";
29 std::cout << std::boolalpha;
30 std::cout << (t_null == json::value_t::null) <<
'\n';
31 std::cout << (t_boolean == json::value_t::boolean) <<
'\n';
32 std::cout << (t_number_integer == json::value_t::number_integer) <<
'\n';
33 std::cout << (t_number_unsigned == json::value_t::number_unsigned) <<
'\n';
34 std::cout << (t_number_float == json::value_t::number_float) <<
'\n';
35 std::cout << (t_object == json::value_t::object) <<
'\n';
36 std::cout << (t_array == json::value_t::array) <<
'\n';
37 std::cout << (t_string == json::value_t::string) <<
'\n';