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 0da16e0695.
PrevUpHomeNext
monotonic_resource::monotonic_resource

Constructor.

monotonic_resource(
    unsigned char* buffer,
    std::size_t size,
    storage_ptr upstream = {});
  » more...

monotonic_resource(
    std::byte* buffer,
    std::size_t size,
    storage_ptr upstream);
  » more...

template<
    std::size_t N>
explicit
monotonic_resource(
    unsigned char(&) buffer [N],
    storage_ptr upstream = {});
  » more...

template<
    std::size_t N>
explicit
monotonic_resource(
    std::byte(&) buffer [N],
    storage_ptr upstream = {});
  » more...

explicit
monotonic_resource(
    std::size_t initial_size = 1024,
    storage_ptr upstream = {});
  » more...

Copy constructor (deleted)

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

PrevUpHomeNext