[#bsl-basic_string-0fb-operator_plus_eq-03] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0fb.adoc[basic_string<char>]::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<char>]& xref:bsl/basic_string-0fb/operator_plus_eq-0e.adoc[operator+=](char character); ---- [.small]#xref:bsl/basic_string-0fb/operator_plus_eq-0e.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<char>]& xref:bsl/basic_string-0fb/operator_plus_eq-094.adoc[operator+=](xref:bsl/basic_string-0faf.adoc[basic_string<char>] const& rhs); ---- [.small]#xref:bsl/basic_string-0fb/operator_plus_eq-094.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<char>]& xref:bsl/basic_string-0fb/operator_plus_eq-0c.adoc[operator+=](char const* rhs); ---- [.small]#xref:bsl/basic_string-0fb/operator_plus_eq-0c.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<char>]& xref:bsl/basic_string-0fb/operator_plus_eq-05.adoc[operator+=](STRING_VIEW_LIKE_TYPE const& rhs); ---- [.small]#xref:bsl/basic_string-0fb/operator_plus_eq-05.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<char>]& xref:bsl/basic_string-0fb/operator_plus_eq-090.adoc[operator+=](std::basic_string<char, char_traits<char>, ALLOC2> const& rhs); ---- [.small]#xref:bsl/basic_string-0fb/operator_plus_eq-090.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#