raw_storage_iterator<FwdIt, T>& operator++();
raw_storage_iterator<FwdIt, T> operator++(int);
The first (preincrement) operator increments the stored output iterator object, then returns *this
.
The second (postincrement) operator makes a copy of *this
, increments the stored output iterator object, then
returns the copy.