Increment operators
Declared in <bsltf_inputiterator.h>
Increment this iterator to refer to the next contiguous TYPE object, and return a reference to after the increment. The behavior is undefined if this iterator is empty.
InputIterator<TYPE>&
operator++();
» more...
Copy this iterator, increment, and return by value the copy that was made prior to the increment. The behavior is undefined if this iterator is empty.
InputIterator<TYPE>
operator++(int);
» more...