[#bsl-basic_string-0e-operator_plus_eq-05] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0e.adoc[basic_string<wchar_t>]::operator+= :relfileprefix: ../../ :mrdocs: Addition assignment operators == Synopses Declared in `<bslstl_string.h>` Append the specified `character` to this string, and return a reference providing modifiable access to this string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>]& xref:bsl/basic_string-0e/operator_plus_eq-0b.adoc[operator+=](wchar_t character); ---- [.small]#xref:bsl/basic_string-0e/operator_plus_eq-0b.adoc[_» more..._]# Append the specified `rhs` string to this string, and return a reference providing modifiable access to this string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>]& xref:bsl/basic_string-0e/operator_plus_eq-04.adoc[operator+=](xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>] const& rhs); ---- [.small]#xref:bsl/basic_string-0e/operator_plus_eq-04.adoc[_» 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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>]& xref:bsl/basic_string-0e/operator_plus_eq-07.adoc[operator+=](wchar_t const* rhs); ---- [.small]#xref:bsl/basic_string-0e/operator_plus_eq-07.adoc[_» more..._]# Append the specified `rhs` to this string, and return a reference providing modifiable access to this string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class STRING_VIEW_LIKE_TYPE> xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>]& xref:bsl/basic_string-0e/operator_plus_eq-0f.adoc[operator+=](STRING_VIEW_LIKE_TYPE const& rhs); ---- [.small]#xref:bsl/basic_string-0e/operator_plus_eq-0f.adoc[_» more..._]# Append the specified `rhs` string to this string, and return a reference providing modifiable access to this string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ALLOC2> xref:bsl/basic_string-0faf.adoc[basic_string<wchar_t>]& xref:bsl/basic_string-0e/operator_plus_eq-09.adoc[operator+=](std::basic_string<wchar_t, char_traits<wchar_t>, ALLOC2> const& rhs); ---- [.small]#xref:bsl/basic_string-0e/operator_plus_eq-09.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#