boost::urls::pct_string_view::operator=

Assignment

Synopsis

Declared in <boost/url/pct_string_view.hpp>
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.

Return Value

A reference to this object.

Parameters

Name Description
other The string to copy.

Created with MrDocs