libstdc++
|
Provides input iterator semantics for streambufs.
Definition at line 52 of file streambuf_iterator.h.
typedef _CharT std::istreambuf_iterator< _CharT, _Traits >::char_type |
Public typedefs.
Definition at line 60 of file streambuf_iterator.h.
typedef _Traits::off_type std::iterator< input_iterator_tag , _CharT , _Traits::off_type , _CharT * , _CharT & >::difference_type [inherited] |
Distance between iterators is represented as this type.
Definition at line 126 of file stl_iterator_base_types.h.
typedef _Traits::int_type std::istreambuf_iterator< _CharT, _Traits >::int_type |
Public typedefs.
Definition at line 62 of file streambuf_iterator.h.
typedef basic_istream<_CharT, _Traits> std::istreambuf_iterator< _CharT, _Traits >::istream_type |
Public typedefs.
Definition at line 64 of file streambuf_iterator.h.
typedef input_iterator_tag std::iterator< input_iterator_tag , _CharT , _Traits::off_type , _CharT * , _CharT & >::iterator_category [inherited] |
One of the tag types.
Definition at line 122 of file stl_iterator_base_types.h.
typedef _CharT * std::iterator< input_iterator_tag , _CharT , _Traits::off_type , _CharT * , _CharT & >::pointer [inherited] |
This type represents a pointer-to-value_type.
Definition at line 128 of file stl_iterator_base_types.h.
typedef _CharT & std::iterator< input_iterator_tag , _CharT , _Traits::off_type , _CharT * , _CharT & >::reference [inherited] |
This type represents a reference-to-value_type.
Definition at line 130 of file stl_iterator_base_types.h.
typedef basic_streambuf<_CharT, _Traits> std::istreambuf_iterator< _CharT, _Traits >::streambuf_type |
Public typedefs.
Definition at line 63 of file streambuf_iterator.h.
typedef _Traits std::istreambuf_iterator< _CharT, _Traits >::traits_type |
Public typedefs.
Definition at line 61 of file streambuf_iterator.h.
typedef _CharT std::iterator< input_iterator_tag , _CharT , _Traits::off_type , _CharT * , _CharT & >::value_type [inherited] |
The type "pointed to" by the iterator.
Definition at line 124 of file stl_iterator_base_types.h.
constexpr std::istreambuf_iterator< _CharT, _Traits >::istreambuf_iterator | ( | ) | throw () [inline] |
Construct end of input stream iterator.
Definition at line 98 of file streambuf_iterator.h.
std::istreambuf_iterator< _CharT, _Traits >::istreambuf_iterator | ( | istream_type & | __s | ) | throw () [inline] |
Construct start of input stream iterator.
Definition at line 102 of file streambuf_iterator.h.
std::istreambuf_iterator< _CharT, _Traits >::istreambuf_iterator | ( | streambuf_type * | __s | ) | throw () [inline] |
Construct start of streambuf iterator.
Definition at line 106 of file streambuf_iterator.h.
bool std::istreambuf_iterator< _CharT, _Traits >::equal | ( | const istreambuf_iterator< _CharT, _Traits > & | __b | ) | const [inline] |
Return true both iterators are end or both are not end.
Definition at line 162 of file streambuf_iterator.h.
char_type std::istreambuf_iterator< _CharT, _Traits >::operator* | ( | ) | const [inline] |
Return the current character pointed to by iterator. This returns streambuf.sgetc(). It cannot be assigned. NB: The result of operator*() on an end of stream is undefined.
Definition at line 113 of file streambuf_iterator.h.
istreambuf_iterator& std::istreambuf_iterator< _CharT, _Traits >::operator++ | ( | ) | [inline] |
Advance the iterator. Calls streambuf.sbumpc().
Definition at line 127 of file streambuf_iterator.h.
References std::basic_streambuf< _CharT, _Traits >::sbumpc().
istreambuf_iterator std::istreambuf_iterator< _CharT, _Traits >::operator++ | ( | int | ) | [inline] |
Advance the iterator. Calls streambuf.sbumpc().
Definition at line 142 of file streambuf_iterator.h.
References std::basic_streambuf< _CharT, _Traits >::sbumpc().