prevector::const_iterator::operator++

Increment operators

Synopses

Declared in <prevector.h>

Advances the iterator to the next element.

const_iterator&
operator++();
» more...

Advances the iterator, returning its previous value.

const_iterator
operator++(int postfix);
» more...

Return Value

  • A reference to this iterator.
  • A copy of the iterator before it was advanced.

Parameters

NameDescription
postfixUnused tag distinguishing the postfix form.