Lines Matching defs:j1
1279 json j1 = {{"one", 1}, {"two", 2}, {"three", 3}};
1287 j1.get<std::map<std::string, int>>();
1296 j1.get<std::unordered_map<std::string, int>>();
1306 j1.get<std::multimap<std::string, int>>();
1316 j1.get<std::unordered_multimap<std::string, int>>();
1334 json j1 = {1, 2, 3, 4};
1342 j1.get<std::list<int>>();
1351 j1.get<std::forward_list<int>>();
1360 j1.get<std::array<int, 4>>();
1369 CHECK_THROWS_WITH_AS(j1.get_to(arr6), "[json.exception.out_of_range.401] "
1376 j1.get_to(arr2);
1384 j1.get<std::valarray<int>>();
1393 j1.get<std::vector<int>>();
1402 j1.get<std::deque<int>>();
1411 j1.get<std::set<int>>();
1420 j1.get<std::unordered_set<int>>();