Move the specified iterator to the next element and return its prior value.
Declared in <bslstl_hashtablebucketiterator.h>
template<
class VALUE_TYPE,
class DIFFERENCE_TYPE>
HashTableBucketIterator<VALUE_TYPE, DIFFERENCE_TYPE>
operator++(
HashTableBucketIterator<VALUE_TYPE, DIFFERENCE_TYPE>& iterator,
int postfix);
The behavior is undefined unless iterator refers to a valid (not yet erased) element in a bucket. Note that iterator is invalidated when the underlying hash table is rehashed.
copy of iterator prior to advancement
| Name | Description |
|---|---|
| iterator | iterator to advance |
| postfix | unused parameter distinguishing the postfix operator |