[#D4A0C3890D978A53BBC44A4C610819684206B249]

Function pct_string_view:: pct_string_view

Constructor

Synopsis

            pct_string_view(core::string_view s);
        

Description

The newly constructed string references the specified character buffer. Ownership is not transferred.

Postconditions

this->data() == s.data() && this->size() == s.size()

Complexity

Linear in `s.size()`.

Exception Safety

Exceptions thrown on invalid input.