Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
decode_view::back

Return the last character.

Synopsis
reference
back() const;
Example
assert( decode_view( "Program%20Files" ).back() == 's' );
Preconditions
not this->empty()
Complexity

Constant.

Exception Safety

Throws nothing.


PrevUpHomeNext