MCPcopy Create free account
hub / github.com/Predelnik/DSpellCheck / to_msgpack

Function to_msgpack

deps/json/json.hpp:23449–23454  ·  view source on GitHub ↗

@brief create a MessagePack serialization of a given JSON value @sa https://json.nlohmann.me/api/basic_json/to_msgpack/

Source from the content-addressed store, hash-verified

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/

Callers

nothing calls this directly

Calls 1

write_msgpackMethod · 0.80

Tested by

no test coverage detected