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

Function dump

include/jsoncons/basic_json.hpp:2863–2873  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2861
2862 template <typename CharContainer>
2863 typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2864 dump(CharContainer& cont,
2865 const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const
2866 {
2867 std::error_code ec;
2868 dump(cont, options, indenting::no_indent, ec);
2869 if (JSONCONS_UNLIKELY(ec))
2870 {
2871 JSONCONS_THROW(ser_error(ec));
2872 }
2873 }
2874
2875 template <typename CharContainer>
2876 typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type

Callers 3

dump_prettyFunction · 0.85
try_as_stringFunction · 0.85
to_stringFunction · 0.85

Calls 3

ser_errorClass · 0.85
dump_prettyFunction · 0.85
flushMethod · 0.45

Tested by

no test coverage detected