[common] Introduce integer range class
This class generates a IntRange [a,b) which can be used in a for loop, e.g for(auto i : IntRange(3) { ... i = 0, 1, 2 } or for(auto i : IntRange(5, 8) { ... i = 5, 6, 7} see: https://en.wikipedia.org/wiki/Generator_(computer_programming)
parent
92b5d424
No related branches found
No related tags found
dumux/common/intrange.hh
0 → 100644
Please register or sign in to comment