@brief create a MessagePack serialization of a given JSON value @sa https://json.nlohmann.me/api/basic_json/to_msgpack/
| 23447 | /// @brief create a MessagePack serialization of a given JSON value |
| 23448 | /// @sa https://json.nlohmann.me/api/basic_json/to_msgpack/ |
| 23449 | static std::vector<std::uint8_t> to_msgpack(const basic_json& j) |
| 23450 | { |
| 23451 | std::vector<std::uint8_t> result; |
| 23452 | to_msgpack(j, result); |
| 23453 | return result; |
| 23454 | } |
| 23455 | |
| 23456 | /// @brief create a MessagePack serialization of a given JSON value |
| 23457 | /// @sa https://json.nlohmann.me/api/basic_json/to_msgpack/ |
nothing calls this directly
no test coverage detected