pct_string_view Constructor Synopsis pct_string_view(string_view s); Declared in file <include/boost/url/pct_string_view.hpp> on line 241 Defined in file <src/pct_string_view.cpp> on line 37 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.