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

Method write

test/test.hpp:431–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

429 }
430
431 std::size_t
432 write(
433 bool more,
434 char const* data,
435 std::size_t size,
436 system::error_code& ec)
437 {
438 auto const n = p_.write_some(
439 more, data, size, ec);
440 if(! ec && n < size)
441 ec = error::extra_data;
442 return n;
443 }
444};
445
446//----------------------------------------------------------

Callers

nothing calls this directly

Calls 1

write_someMethod · 0.45

Tested by

no test coverage detected