Lines Matching defs:j1
361 nlohmann::json j1 = obj1; //via json string
362 std::string s = j1.dump();
372 nlohmann::json j1 = obj1; //via msgpack
373 std::vector<uint8_t> buf = nlohmann::json::to_msgpack(j1);
383 nlohmann::json j1 = obj1; //via bson
384 std::vector<uint8_t> buf = nlohmann::json::to_bson(j1);
394 nlohmann::json j1 = obj1; //via cbor
395 std::vector<uint8_t> buf = nlohmann::json::to_cbor(j1);
405 nlohmann::json j1 = obj1; //via ubjson
406 std::vector<uint8_t> buf = nlohmann::json::to_ubjson(j1);