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 a snapshot of the master branch, built from commit 9be721e70e.
PrevUpHomeNext

parse_into

Parse a JSON text into a user-defined object.

template<
    class V>
void
parse_into(
    V& v,
    string_view sv,
    system::error_code& ec,
    parse_options const& opt = {});
  » more...

template<
    class V>
void
parse_into(
    V& v,
    string_view sv,
    std::error_code& ec,
    parse_options const& opt = {});
  » more...

template<
    class V>
void
parse_into(
    V& v,
    std::istream& is,
    system::error_code& ec,
    parse_options const& opt = {});
  » more...

template<
    class V>
void
parse_into(
    V& v,
    std::istream& is,
    std::error_code& ec,
    parse_options const& opt = {});
  » more...

template<
    class V>
void
parse_into(
    V& v,
    string_view sv,
    parse_options const& opt = {});
  » more...

template<
    class V>
void
parse_into(
    V& v,
    std::istream& is,
    parse_options const& opt = {});
  » more...

PrevUpHomeNext