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