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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
basic_static_string::operator+= (1 of 5 overloads)

Append to the string.

Synopsis
template<
    std::size_t M>
constexpr basic_static_string&
operator+=(
    const basic_static_string< M, CharT, Traits >& s);
Description

Appends s to the end of the string.

Exception Safety

Strong guarantee.

Template Parameters

Type

Description

M

The size of the string to append.

Return Value

*this

Parameters

Name

Description

s

The string to append.

Exceptions

Type

Thrown On

std::length_error

size() + s.size() > max_size()


PrevUpHomeNext