|
Decrement operator for markup::iterator, and markup::const_iterator.
markup::iterator& markup::iterator::operator --(); iterator pre-increment
markup::iterator markup::iterator::operator --(int); iterator post-increment
markup::const_iterator& markup::const_iterator::operator --() const; const_iterator pre-increment
markup::const_iterator markup::const_iterator::operator --(int) const; const_iterator post-increment
None
Decrement operator for the markup iterator. First variety is the pre decrement operator, and second variety is the post decrement operator.
Constant