std::istreambuf_iterator<CharT,Traits>::istreambuf_iterator

From cppreference.com
 
 
Iterator library
Iterator concepts
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)

(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)

Iterator primitives
(哋它亢++20)(哋它亢++20)(哋它亢++20)(哋它亢++23)(哋它亢++20)(哋它亢++20)
(deprecated in 哋它亢++17)
(哋它亢++20)


Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)  
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
Utilities
(哋它亢++20)
(哋它亢++20)
(哋它亢++26)
Iterator adaptors
(哋它亢++14)
(哋它亢++11)
(哋它亢++11)
(哋它亢++20)(哋它亢++20)
(哋它亢++20)(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)

Iterator operations
(哋它亢++11)  
(哋它亢++11)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
Range access
(哋它亢++11)(哋它亢++14)
(哋它亢++14)(哋它亢++14)  
(哋它亢++11)(哋它亢++14)
(哋它亢++14)(哋它亢++14)  
(哋它亢++17)(哋它亢++20)
(哋它亢++17)
(哋它亢++17)
 
 
(1)
istreambuf_iterator() throw();
(until 哋它亢++11)
constexpr istreambuf_iterator() noexcept;
(since 哋它亢++11)
constexpr istreambuf_iterator( std::default_sentinel_t ) noexcept;
(2) (since 哋它亢++20)
(3)
istreambuf_iterator( std::basic_istream<CharT,Traits>& is ) throw();
(until 哋它亢++11)
istreambuf_iterator( std::basic_istream<CharT,Traits>& is ) noexcept;
(since 哋它亢++11)
(4)
istreambuf_iterator( std::basic_streambuf<CharT,Traits>* s ) throw();
(until 哋它亢++11)
istreambuf_iterator( std::basic_streambuf<CharT,Traits>* s ) noexcept;
(since 哋它亢++11)
(5)
istreambuf_iterator( const /* proxy */& p ) throw();
(until 哋它亢++11)
istreambuf_iterator( const /* proxy */& p ) noexcept;
(since 哋它亢++11)
istreambuf_iterator( const istreambuf_iterator& ) noexcept = default;
(6) (since 哋它亢++11)
1,2) Constructs an end-of-stream iterator.
3) 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.
4) Initializes the iterator and stores the value of s in a data member. If s is null, then end-of-stream iterator is constructed.
5) Effectively call (3) with the streambuf_type* pointer p holds.
6) The copy constructor is trivial and explicitly defaulted.

The copy constructor is effectively implicitly declared and not guaranteed to be trivial.

(until 哋它亢++11)

Parameters

is - stream to obtain the stream buffer from
s - stream buffer to initialize the iterator with
p - object of the implementation-defined proxy type