Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 68cc668162.
PrevUpHomeNext
segments_ref::pop_back

Remove the last segment.

Synopsis
void
pop_back();
Description

This function removes the last segment from the container.

Iterators to the last segment as well as all end iterators are invalidated.

Preconditions
not this->empty()
Exception Safety

Throws nothing.


PrevUpHomeNext