Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
segments_view::back

(Inherited from segments_base)

Return the last segment.

Synopsis
std::string
back() const;
Preconditions
this->empty() == false
Example
assert( url_view( "/path/to/file.txt" ).segments().back() == "file.txt" );
Preconditions
this->empty() == false
Effects
return *--end();
Complexity

Linear in this->back().size().

Exception Safety

Calls to allocate may throw.


PrevUpHomeNext