Just stumbled over following code-case and was wondering if there is straight-forward represenation in VL:
for (int gridY=0; gridY<height; gridY+=stepY){
for (int gridX=0; gridX<width; gridX+=stepX){
}
}
The important part is the use of custom iterator, not only “i++”. My workaround atm is to calculate the iteration-count before the loop, but maybe there is a better solution.