Namespaces
Variants
Views
Actions

std::istreambuf_iterator::istreambuf_iterator

From cppreference.com
(1)
istreambuf_iterator() noexcept;
(until C++11)
constexpr istreambuf_iterator() noexcept;
(since C++11)
istreambuf_iterator( std::basic_istream<CharT,Traits>& is ) noexcept;
(2)
istreambuf_iterator( std::basic_streambuf<CharT,Traits>* s ) noexcept;
(3)
istreambuf_iterator( const istreambuf_iterator& ) noexcept = default;
(4) (since C++11)
1) Constructs an end-of-stream iterator.
2) Initializes the iterator and stores the value of is.rdbuf() in a data member. If is.rdbuf() is null, then end-of-stream iterator is constructed.
3) Initializes the iterator and stores the value of s in a data member. If s is null, then end-of-stream iterator is constructed.
4) The copy constructor is explicitly defaulted.

[edit] Parameters

is - stream to obtain the stream buffer from
s - stream buffer to initialize the iterator with