Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
stream_parser::write

Parse a buffer containing all or part of a complete JSON.

std::size_t
write(
    char const* data,
    std::size_t size,
    error_code& ec);
  » more...

std::size_t
write(
    char const* data,
    std::size_t size);
  » more...

std::size_t
write(
    string_view s,
    error_code& ec);
  » more...

std::size_t
write(
    string_view s);
  » more...

PrevUpHomeNext