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::stream_parser

Copy constructor (deleted)

stream_parser(
    stream_parser const&) = delete;
  » more...

Constructor.

stream_parser(
    storage_ptr sp,
    parse_options const& opt,
    unsigned char* buffer,
    std::size_t size);
  » more...

stream_parser();
  » more...

stream_parser(
    storage_ptr sp,
    parse_options const& opt);
  » more...

explicit
stream_parser(
    storage_ptr sp);
  » more...

template<
    std::size_t N>
stream_parser(
    storage_ptr sp,
    parse_options const& opt,
    unsigned char(&) buffer [N]);
  » more...

stream_parser(
    storage_ptr sp,
    parse_options const& opt,
    std::byte* buffer,
    std::size_t size);
  » more...

template<
    std::size_t N>
stream_parser(
    storage_ptr sp,
    parse_options const& opt,
    std::byte(&) buffer [N]);
  » more...

PrevUpHomeNext