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

Method write

test/test.hpp:658–670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656 }
657
658 std::size_t
659 write(
660 bool more,
661 char const* data,
662 std::size_t size,
663 system::error_code& ec)
664 {
665 auto const n = p_.write_some(
666 more, data, size, ec);
667 if(! ec && n < size)
668 ec = error::extra_data;
669 return n;
670 }
671};
672
673//----------------------------------------------------------

Callers

nothing calls this directly

Calls 1

write_someMethod · 0.45

Tested by

no test coverage detected