Addition assignment operators
Declared in <bslstl_string.h>
Append the specified character to this string, and return a reference providing modifiable access to this string.
basic_string<char16_t>&
operator+=(char16_t character);
» more...
Append the specified rhs string to this string, and return a reference providing modifiable access to this string.
basic_string<char16_t>&
operator+=(basic_string<char16_t> const& rhs);
» more...
Append the specified null-terminated rhs string (of length CHAR_TRAITS::length(rhs)) to this string, and return a reference providing modifiable access to this string.
basic_string<char16_t>&
operator+=(char16_t const* rhs);
» more...
Append the specified rhs to this string, and return a reference providing modifiable access to this string.
template<class STRING_VIEW_LIKE_TYPE>
basic_string<char16_t>&
operator+=(STRING_VIEW_LIKE_TYPE const& rhs);
» more...
Append the specified rhs string to this string, and return a reference providing modifiable access to this string.
template<class ALLOC2>
basic_string<char16_t>&
operator+=(std::basic_string<char16_t, char_traits<char16_t>, ALLOC2> const& rhs);
» more...