@brief create a MessagePack serialization of a given JSON value @sa https://json.nlohmann.me/api/basic_json/to_msgpack/
| 23560 | /// @brief create a MessagePack serialization of a given JSON value |
| 23561 | /// @sa https://json.nlohmann.me/api/basic_json/to_msgpack/ |
| 23562 | static std::vector<std::uint8_t> to_msgpack(const basic_json& j) |
| 23563 | { |
| 23564 | std::vector<std::uint8_t> result; |
| 23565 | to_msgpack(j, result); |
| 23566 | return result; |
| 23567 | } |
| 23568 | |
| 23569 | /// @brief create a MessagePack serialization of a given JSON value |
| 23570 | /// @sa https://json.nlohmann.me/api/basic_json/to_msgpack/ |
no test coverage detected