bool failed() const throw(); | (until C++11) | |
bool failed() const noexcept; | (since C++11) |
Returns true
if the iterator encountered the end-of-file condition, that is, if an earlier call to std::basic_streambuf::sputc
(made by operator=
) returned Traits::eof
.
(none).
true
if this iterator has encountered the end-of-file condition on output, false
otherwise.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/failed