[#8C2D2B2F943C82088BB272A9E97CB4191B785DB2]

Function params_view:: operator=

Assignment

Synopsis

            params_view&
operator=(params_view const&) = default;
        

Description

After assignment, both views reference the same underlying character buffer.

Ownership is not transferred; the caller is responsible for ensuring the lifetime of the buffer extends until it is no longer referenced.

Postconditions

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

Complexity

Constant

Exception Safety

Throws nothing