Lines Matching refs:nlohmann
35 using nlohmann::json;
268 nlohmann::json j = obj1; //via json object
277 nlohmann::json j1 = obj1; //via json string
279 nlohmann::json j2 = nlohmann::json::parse(s);
288 nlohmann::json j1 = obj1; //via msgpack
289 std::vector<uint8_t> buf = nlohmann::json::to_msgpack(j1);
290 nlohmann::json j2 = nlohmann::json::from_msgpack(buf);
299 nlohmann::json j1 = obj1; //via bson
300 std::vector<uint8_t> buf = nlohmann::json::to_bson(j1);
301 nlohmann::json j2 = nlohmann::json::from_bson(buf);
310 nlohmann::json j1 = obj1; //via cbor
311 std::vector<uint8_t> buf = nlohmann::json::to_cbor(j1);
312 nlohmann::json j2 = nlohmann::json::from_cbor(buf);
321 nlohmann::json j1 = obj1; //via ubjson
322 std::vector<uint8_t> buf = nlohmann::json::to_ubjson(j1);
323 nlohmann::json j2 = nlohmann::json::from_ubjson(buf);