...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Append to the string.
constexpr basic_static_string& append( size_type count, value_type ch); »more...
template< std::size_t M> constexpr basic_static_string& append( const basic_static_string< M, CharT, Traits >& s); »more...
template< std::size_t M> constexpr basic_static_string& append( const basic_static_string< M, CharT, Traits >& s, size_type pos, size_type count = npos); »more...
constexpr basic_static_string& append( const_pointer s, size_type count); »more...
constexpr basic_static_string& append( const_pointer s); »more...
template< typename InputIterator> constexpr basic_static_string& append( InputIterator first, InputIterator last); »more...
constexpr basic_static_string& append( std::initializer_list< value_type > ilist); »more...
template< typename T> constexpr basic_static_string& append( const T& t); »more...
template< typename T> constexpr basic_static_string& append( const T& t, size_type pos, size_type count = npos); »more...