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.
string();
» more...
Pilfer constructor.
string(pilfered<string> other) noexcept; »more...
Constructor.
explicit string(storage_ptrsp); »more...explicit string(std::size_tcount, char ch,storage_ptrsp = {}); »more...string( char const* s,storage_ptrsp = {}); »more...explicit string( char const* s,std::size_tcount,storage_ptrsp = {}); »more...template< class InputIt> explicit string( InputIt first, InputIt last,storage_ptrsp = {}); »more...explicit string(stringconst& other,storage_ptrsp); »more...explicit string(string&& other,storage_ptrsp); »more...string(string_views,storage_ptrsp = {}); »more...
Copy constructor.
string(stringconst& other); »more...
Move constructor.
string(string&& other) noexcept; »more...