Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
pct_string_view::pct_string_view (2 of 7 overloads)

Constructor.

Synopsis
constexpr
pct_string_view(
    pct_string_view const& other);
Description

The copy will reference 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.

PrevUpHomeNext