[#bsl-basic_string-0faf-operator_plus_eq-044] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0faf.adoc[basic_string]::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]& xref:bsl/basic_string-0faf/operator_plus_eq-0d.adoc[operator+=](CHAR_TYPE character); ---- [.small]#xref:bsl/basic_string-0faf/operator_plus_eq-0d.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]& xref:bsl/basic_string-0faf/operator_plus_eq-0e.adoc[operator+=](xref:bsl/basic_string-0faf.adoc[basic_string] const& rhs); ---- [.small]#xref:bsl/basic_string-0faf/operator_plus_eq-0e.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]& xref:bsl/basic_string-0faf/operator_plus_eq-045.adoc[operator+=](CHAR_TYPE const* rhs); ---- [.small]#xref:bsl/basic_string-0faf/operator_plus_eq-045.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]& xref:bsl/basic_string-0faf/operator_plus_eq-040.adoc[operator+=](STRING_VIEW_LIKE_TYPE const& rhs); ---- [.small]#xref:bsl/basic_string-0faf/operator_plus_eq-040.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]& xref:bsl/basic_string-0faf/operator_plus_eq-00.adoc[operator+=](std::basic_string<CHAR_TYPE, CHAR_TRAITS, ALLOC2> const& rhs); ---- [.small]#xref:bsl/basic_string-0faf/operator_plus_eq-00.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#