std::istreambuf_iterator<CharT,Traits>::istreambuf_iterator
Min standard notice:
1,2) Constructs an end-of-stream iterator.
# Declarations
istreambuf_iterator() throw();
(until C++11)
constexpr istreambuf_iterator() noexcept;
(since C++11)
constexpr istreambuf_iterator( std::default_sentinel_t ) noexcept;
(since C++20)
istreambuf_iterator( std::basic_istream<CharT,Traits>& is ) throw();
(until C++11)
istreambuf_iterator( std::basic_istream<CharT,Traits>& is ) noexcept;
(since C++11)
istreambuf_iterator( std::basic_streambuf<CharT,Traits>* s ) throw();
(until C++11)
istreambuf_iterator( std::basic_streambuf<CharT,Traits>* s ) noexcept;
(since C++11)
istreambuf_iterator( const /* proxy */& p ) throw();
(until C++11)
istreambuf_iterator( const /* proxy */& p ) noexcept;
(since C++11)
istreambuf_iterator( const istreambuf_iterator& ) noexcept = default;
(since C++11)
# Parameters
is: stream to obtain the stream buffer froms: stream buffer to initialize the iterator withp: object of the implementation-defined proxy type