Is there a nice way to iterate over at most N elements in a container using a range-based for
loop and/or algorithms from the standard library (that's the whole point, I know I can just use the "old" for
loop with a condition).
Basically, I'm looking for something that corresponds to this Python code:
for i in arr[:N]:
print(i)
Since C++20 you can add the range adaptor
std::views::take
from the Ranges library to your range-based for loop. This way you can implement a similar solution to the one in PiotrNycz's answer, but without using Boost:The nice thing about this solution is that
N
may be larger than the size of the vector. This means, for the example above, it is safe to useN = 13
; the complete vector will then be printed.Code on Wandbox