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 00765c4244.
PrevUpHomeNext
storage_ptr::storage_ptr

Constructor.

storage_ptr() noexcept;
  » more...

template<
    class T>
storage_ptr(
    T* r) noexcept;
  » more...

template<
    class T>
storage_ptr(
    boost::container::pmr::polymorphic_allocator< T > const& alloc) noexcept;
  » more...

Move constructor.

storage_ptr(
    storage_ptr&& other) noexcept;
  » more...

Copy constructor.

storage_ptr(
    storage_ptr const& other) noexcept;
  » more...

PrevUpHomeNext