boost::urls::pct_string_view::pct_string_view
Constructor
Synopsis
template<
std::convertible_to<core::string_view> String,
class = void>
constexpr
pct_string_view(String const& s);
Description
The newly constructed string references the specified character buffer. Ownership is not transferred.
this->data() == core::string_view(s).data()
Exceptions
Name | Thrown on |
---|---|
|
The string contains an invalid percent encoding. |
Template Parameters
Name | Description |
---|---|
String |
A type convertible to |
Parameters
Name | Description |
---|---|
s |
The string to construct from. |
Created with MrDocs