Home | Libraries | People | FAQ | More |
Constructor.
pct_string_view( char const* first, char const* last);
The newly constructed string will reference the specified character buffer. Ownership is not transferred.
this->data() == first && this->data() + this->size() == last
Linear in len
.
Exceptions thrown on invalid input.
Type |
Thrown On |
---|---|
|
The string contains an invalid percent encoding. |
Name |
Description |
---|---|
|
The string to construct from. |