[#75D74AF14E350955C201C400F070BA32E7537BEE]

Function pct_string_view:: operator=

Assignment

Synopsis

            constexpr
pct_string_view&
operator=(pct_string_view const& other) = default;
        

Description

The copy references the same underlying character buffer. Ownership is not transferred.

Postconditions

this->data() == other.data()

Complexity

Constant.

Exception Safety

Throws nothing.

other The string to copy.