![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
#include </home/jarvis/actions-runner/jarvis-vccc-2/_work/vccc/vccc/include/vccc/__iterator/input_iterator.hpp>
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.
Unlike the LegacyInputIterator
requirements, the input_iterator
concept does not require equality_comparable
, since input iterators are typically compared with sentinels.