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 develop branch, built from commit b25e47ab7b.
PrevUpHomeNext
serializer::reset

Reset the serializer for a new element.

void
reset(
    value const* p) noexcept;
  » more...

void
reset(
    array const* p) noexcept;
  » more...

void
reset(
    object const* p) noexcept;
  » more...

void
reset(
    string const* p) noexcept;
  » more...

template<
    class T>
void
reset(
    T const* p) noexcept;
  » more...

Reset the serializer for a new string.

void
reset(
    string_view sv) noexcept;
  » more...

Reset the serializer for std::nullptr_t.

void
reset(
    std::nullptr_t) noexcept;
  » more...

PrevUpHomeNext