Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit ecbc607568.
PrevUpHomeNext
basic_static_string::operator+= (3 of 5 overloads)

Append to the string.

Synopsis
constexpr basic_static_string&
operator+=(
    const_pointer s);
Description

Appends count characters from the string pointed to by s to the end of the string, where count is traits_type::length(s).

Exception Safety

Strong guarantee.

Return Value

*this

Parameters

Name

Description

s

The string to append.

Exceptions

Type

Thrown On

std::length_error

size() + count > max_size()


PrevUpHomeNext