Return the first segment
pct_string_view
front() noexcept;
Declared in file <boost/url/impl/segments_encoded_base.hpp> at line 111
This function returns a string with the first segment of the path without any leading or trailing '/' separators. The returned string may contain percent escapes.
this->empty() == false
return *begin();
assert( url_view( "/path/to/file.txt" ).encoded_segments().front() == "path" );
Constant.
Throws nothing.