std::ostreambuf_iterator<CharT,Traits>::failed
From cppreference.com
< cpp | iterator | ostreambuf iterator
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Iterator library
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)(C++20)(C++23)(C++20)(C++20)
(deprecated in C++17)
(C++20)
(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++14)
(C++11)
(C++11)
(C++20)(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++23)
(C++23)
(C++23)
(C++23)
(C++23)
(C++11)(C++14)
(C++14)(C++14)
std::ostreambuf_iterator
Member functions
ostreambuf_iterator::failed
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.
[edit] Parameters
(none)
[edit] Return value
true if this iterator has encountered the end-of-file condition on output, false otherwise.
[edit] Example
This section is incomplete
Reason: no example
Reason: no example