std::input_iterator
From cppreference.com
Defined in header <iterator>
|
||
template< class I > concept input_iterator = |
(since C++20) | |
The input_iterator
concept is a refinement of input_or_output_iterator
, adding the requirement that the referenced values can be read (via indirectly_readable
) and the requirement that the iterator concept tag be present.
Contents |