Constructor
void
pct_string_view(
string_view s);
Declared in file <src/pct_string_view.cpp> at line 37
The newly constructed string references the specified character buffer. Ownership is not transferred.
this->data() == s.data() && this->size() == s.size()
Linear in `s.size()`.
Exceptions thrown on invalid input.