MCPcopy Create free account
hub / github.com/boostorg/json / write

Method write

test/basic_parser.cpp:1218–1230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1216 }
1217
1218 std::size_t
1219 write(
1220 bool more,
1221 char const* data,
1222 std::size_t size,
1223 system::error_code& ec)
1224 {
1225 auto const n = p_.write_some(
1226 more, data, size, ec);
1227 if(! ec && n < size)
1228 ec = error::extra_data;
1229 return n;
1230 }
1231
1232 string_view
1233 captured() const noexcept

Callers 10

validateFunction · 0.45
basic_parser_testClass · 0.45
testParserFunction · 0.45
testParseVectorsFunction · 0.45
testCommentsFunction · 0.45
testUTF8ValidationFunction · 0.45
testMaxDepthFunction · 0.45
testNumberLiteralFunction · 0.45
testStickyErrorsFunction · 0.45
testStdTypesFunction · 0.45

Calls 1

write_someMethod · 0.45

Tested by

no test coverage detected