pct_string_view

Constructor

Synopsis

constexpr
pct_string_view(const pct_string_view& other) = default;

Defined in file <include/boost/url/pct_string_view.hpp> on line 138

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.