Writes successive elements onto the output stream from which it was constructed.
More...
template<typename T>
class RWvostreamIterator< T >
Class RWvostreamIterator writes (using operator<<
) successive elements onto the output stream from which it was constructed. It is not possible to get a value out of the output iterator. Its only use is as an output iterator in situations like the following.
while (first != last) {
*result++ = *first++;
}
Writes successive elements onto the output stream from which it was constructed.
Definition vstream.h:1233