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.
Assign characters to a string.
string& assign(std::size_tcount, char ch); »more...string& assign(stringconst& other); »more...string& assign(string&& other); »more...string& assign( char const* s,std::size_tcount); »more...string& assign( char const* s); »more...template< class InputIt>string& assign( InputIt first, InputIt last); »more...string& assign(string_views); »more...