MCPcopy Create free account
hub / github.com/danielaparker/jsoncons / encode_msgpack

Function encode_msgpack

include/jsoncons_ext/msgpack/encode_msgpack.hpp:127–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125
126template <typename... Args>
127void encode_msgpack(Args&& ... args)
128{
129 auto r = try_encode_msgpack(std::forward<Args>(args)...);
130 if (!r)
131 {
132 JSONCONS_THROW(ser_error(r.error()));
133 }
134}
135
136} // namespace msgpack
137} // namespace jsoncons

Callers 13

check_encode_msgpackFunction · 0.85
msgpack_tests.cppFile · 0.85
tuple_exampleFunction · 0.85
example1Function · 0.85
example2Function · 0.85
ext_exampleFunction · 0.85

Calls 3

try_encode_msgpackFunction · 0.85
ser_errorClass · 0.85
errorMethod · 0.80

Tested by 1

check_encode_msgpackFunction · 0.68