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

Function encode_csv

include/jsoncons_ext/csv/encode_csv.hpp:110–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109template <typename... Args>
110void encode_csv(Args&& ... args)
111{
112 auto r = try_encode_csv(std::forward<Args>(args)...);
113 if (!r)
114 {
115 JSONCONS_THROW(ser_error(r.error()));
116 }
117}
118
119} // namespace csv
120} // namespace jsoncons

Callers 15

csv_tests.cppFile · 0.85
tuple_exampleFunction · 0.85
encode_n_objectsFunction · 0.85
encode_n_rowsFunction · 0.85
encode_m_columnsFunction · 0.85
csv_source_to_cpp_objectFunction · 0.85
decode_encode_csv_tasksFunction · 0.85

Calls 3

try_encode_csvFunction · 0.85
ser_errorClass · 0.85
errorMethod · 0.80

Tested by

no test coverage detected