Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2022. The current version is 1.90.0.
Set the fragment.
static_url& set_encoded_fragment( pct_string_view s);
This function sets the fragment to the specified string, which may contain percent-escapes and which may be empty. An empty fragment is distinct from having no fragment. Escapes in the string are preserved, and reserved characters in the string are percent-escaped in the result.
assert( url("?first=john&last=doe" ).set_encoded_fragment( "john%2Ddoe" ).fragment() == "john-doe" );
this->has_fragment() == true && this->fragment() == decode_view( s )
Linear in this->size() + s.size().
Strong guarantee. Calls to allocate may throw. Exceptions thrown on invalid input.
|
Type |
Thrown On |
|---|---|
|
|
|
|
Name |
Description |
|---|---|
|
|
The string to set. |
fragment = *( pchar / "/" / "?" )