xref: /third_party/json/docs/examples/array_t.cpp (revision c5f01b2f)
1#include <iostream>
2#include <iomanip>
3#include <nlohmann/json.hpp>
4
5using json = nlohmann::json;
6
7int main()
8{
9    std::cout << std::boolalpha << std::is_same<std::vector<json>, json::array_t>::value << std::endl;
10}
11