|
Decrement operator for markup::descendant_iterator, and markup::const_descendant_iterator.
markup::descendant_iterator& markup::descendant_iterator::operator --(); non-const pre-increment
markup::descendant_iterator markup::descendant_iterator::operator --(int); non-const post-increment
markup::const_descendant_iterator& markup::const_descendant_iterator::operator --() const; const pre-incremetn
markup::const_descedant_iterator markup::const_descendant_iterator::operator --(int) const; const post-increment
None
Decrement operator for markup::descendant_iterator and markup::const_descendant_iterator. First variety is the pre decrement operator, and second variety is the post decrement operator.
Constant