std::ranges::InputRange (3) - Linux Manuals
std::ranges::InputRange: std::ranges::InputRange
NAME
std::ranges::InputRange - std::ranges::InputRange
Synopsis
Defined in header <ranges>
template<class T>
concept InputRange = Range<T> && InputIterator<iterator_t<T>>;
The InputRange concept is a refinement of Range for which ranges::begin returns a model of InputIterator.