istreambuf_iterator& operator++(); | (1) | |
/* unspecified */ operator++(int); | (2) |
Advances the iterator by calling sbuf_->sbumpc() where sbuf_ is the stored pointer to the stream buffer.
The behavior is undefined if the iterator is end-of-stream iterator.
(none).
*this.proxy holding the current character obtained via operator*() for later retrieval. proxy is implicitly convertible to CharT.proxy also holds a pointer to the stream buffer. istreambuf_iterator can be constructed from proxy, which is equivalent to constructing the istreambuf_iterator from the stream buffer pointer held by proxy.(none).
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_arith