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 7789ef3d8d.
PrevUpHomeNext
parser::parser

Copy constructor (deleted)

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

Constructor.

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

parser();
  » more...

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

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

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

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

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

PrevUpHomeNext