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

storage_ptr::storage_ptr
PrevUpHomeNext

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