[#86E21F68C33AB0280D821766F2600BCF45912F79]
Return the last segment
pct_string_view back() const noexcept;
This function returns a string with the last segment of the path without any leading or trailing '/' separators. The returned string may contain percent escapes.
this->empty() == false
assert( url_view( "/path/to/file.txt" ).encoded_segments().back() == "file.txt" );
this->empty() == false
return *--end();
Constant.
Throws nothing.