Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
basic_static_string::append (5 of 9 overloads)

Append to the string.

Synopsis
BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
append(
    const_pointer s);
Description

Appends the null-terminated character string pointed to by s The length of the string is determined by the first null character using traits_type::length(s).

Exceptions

Type

Thrown On

std::length_error

if traits_type::length(s) > max_size() - size()

Return Value

*this


PrevUpHomeNext