Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
basic_static_string::operator= (1 of 5 overloads)

Assign to the string.

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

Replaces the contents with those of the string s.

Complexity

Linear in s.size().

Exception Safety

Strong guarantee.

Template Parameters

Type

Description

M

The size of the other string.

Return Value

*this

Parameters

Name

Description

s

The string to replace the contents with.

Exceptions

Type

Thrown On

std::length_error

s.size() > max_size().


PrevUpHomeNext