[#4A251B015BDB8B3B6A26622863076F9284328BDD]

Function segments_base:: back

Return the last segment

Synopsis

            std::string
back() const noexcept;
        

Description

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.