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

Method write

test/basic_parser.cpp:1725–1735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1723 }
1724
1725 std::size_t
1726 write(
1727 SV s,
1728 std::error_code& ec)
1729 {
1730 auto const n = p_.write_some(
1731 false, s.data(), s.size(), ec);
1732 if(! ec && n < s.size())
1733 ec = error::extra_data;
1734 return n;
1735 }
1736 };
1737
1738 void testStdTypes()

Callers

nothing calls this directly

Calls 3

write_someMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected