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
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/ranges/InputRange