Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
string::operator= (4 of 4 overloads)

Assign a value to the string.

Synopsis
string&
operator=(
    string_view s);
Description

Replaces the contents with those of a string view. This view can contain null characters.

Complexity

Linear in s.size().

Exception Safety

Strong guarantee. Calls to memory_resource::allocate may throw.

Return Value

*this

Parameters

Name

Description

s

The string view to copy from.

Exceptions

Type

Thrown On

system_error

s.size() > max_size().


PrevUpHomeNext