prevector::const_iterator::operator--

Decrement operators

Synopses

Declared in <prevector.h>

Moves the iterator to the previous element.

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

Moves the iterator back, 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 moved back.

Parameters

NameDescription
postfixUnused tag distinguishing the postfix form.