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 86319a8e16.
PrevUpHomeNext
basic_static_string::append (5 of 9 overloads)

Append to the string.

Synopsis
constexpr basic_static_string&
append(
    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