libstdc++
std::istream_iterator< _Tp, _CharT, _Traits, _Dist > Class Template Reference

#include <stream_iterator.h>

Inheritance diagram for std::istream_iterator< _Tp, _CharT, _Traits, _Dist >:
[legend]

Public Types

typedef _CharT char_type
 
typedef _Distance difference_type
 
typedef basic_istream< _CharT, _Traits > istream_type
 
typedef _Category iterator_category
 
typedef _Pointer pointer
 
typedef _Reference reference
 
typedef _Traits traits_type
 
typedef _Tp value_type
 

Public Member Functions

constexpr istream_iterator ()
 
 istream_iterator (const istream_iterator &__obj)
 
 istream_iterator (istream_type &__s)
 
bool _M_equal (const istream_iterator &__x) const
 
const _Tp & operator* () const
 
istream_iteratoroperator++ ()
 
istream_iterator operator++ (int)
 
const _Tp * operator-> () const
 

Detailed Description

template<typename _Tp, typename _CharT = char, typename _Traits = char_traits<_CharT>, typename _Dist = ptrdiff_t>
class std::istream_iterator< _Tp, _CharT, _Traits, _Dist >

Provides input iterator semantics for streams.

Definition at line 49 of file stream_iterator.h.

Member Typedef Documentation

◆ difference_type

template<typename _Category , typename _Tp , typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&>
typedef _Distance std::iterator< _Category, _Tp, _Distance, _Pointer, _Reference >::difference_type
inherited

Distance between iterators is represented as this type.

Definition at line 125 of file stl_iterator_base_types.h.

◆ iterator_category

template<typename _Category , typename _Tp , typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&>
typedef _Category std::iterator< _Category, _Tp, _Distance, _Pointer, _Reference >::iterator_category
inherited

One of the tag types.

Definition at line 121 of file stl_iterator_base_types.h.

◆ pointer

template<typename _Category , typename _Tp , typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&>
typedef _Pointer std::iterator< _Category, _Tp, _Distance, _Pointer, _Reference >::pointer
inherited

This type represents a pointer-to-value_type.

Definition at line 127 of file stl_iterator_base_types.h.

◆ reference

template<typename _Category , typename _Tp , typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&>
typedef _Reference std::iterator< _Category, _Tp, _Distance, _Pointer, _Reference >::reference
inherited

This type represents a reference-to-value_type.

Definition at line 129 of file stl_iterator_base_types.h.

◆ value_type

template<typename _Category , typename _Tp , typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&>
typedef _Tp std::iterator< _Category, _Tp, _Distance, _Pointer, _Reference >::value_type
inherited

The type "pointed to" by the iterator.

Definition at line 123 of file stl_iterator_base_types.h.


The documentation for this class was generated from the following file: