Return the last segment
string
back() noexcept;
Declared in file <boost/url/impl/segments_base.hpp> at line 114
this->empty() == false
assert( url_view( "/path/to/file.txt" ).segments().back() == "file.txt" );
this->empty() == false
return *--end();
Linear in `this->back().size()`.
Calls to allocate may throw.