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 an older version of Boost and was released in 2024. The current version is 1.90.0.
object() noexcept;
» more...
Constructor.
explicit object(storage_ptrsp) noexcept; »more...object(std::size_tmin_capacity,storage_ptrsp = {}); »more...template< class InputIt> object( InputIt first, InputIt last,std::size_tmin_capacity = 0,storage_ptrsp = {}); »more...
Move constructor.
object(object&& other) noexcept; »more...object(object&& other,storage_ptrsp); »more...
Pilfer constructor.
object(pilfered<object> other) noexcept; »more...
Copy constructor.
object(objectconst& other); »more...object(objectconst& other,storage_ptrsp); »more...
Construct from initializer-list.
object(std::initializer_list<std::pair<string_view,value_ref> > init,storage_ptrsp = {}); »more...object(std::initializer_list<std::pair<string_view,value_ref> > init,std::size_tmin_capacity,storage_ptrsp = {}); »more...