operator++

Post and Pre-increment operators for raw_storage_iterator.

  raw_storage_iterator<OutputIterator,T>&

   operator++();   // Pre-increment

  raw_storage_iterator<OutputIterator,T>

   operator++(int);   //Post-increment  
Remarks

Increments the iterator. The post-increment operator returns the old value of the iterator. The pre-increment operator returns the updated value.