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 3e55ab4aa6.
PrevUpHomeNext
monotonic_resource::monotonic_resource

Constructor.

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

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

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

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

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

Copy constructor (deleted)

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

PrevUpHomeNext