operator=

Assignment

Synopsis

url_view&
operator=(const url_view_base& other) noexcept;

Declared in file <include/boost/url/url_view.hpp> on line 310

Defined in file <src/url_view.cpp> on line 61

Description

After assignment, both views reference the same underlying character buffer. Ownership is not transferred.

Postconditions

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

Complexity

Constant.

Exception Safety

Throws nothing.