Maybe a normal for loop is still the right way but I wanted to see if there is a more succinct way to do it in java 8.
for (int i = 0; i < LIMIT; i++) {
// Code
}
Is there a more java 8 way to do this. I don't actually need i just need to repeat something x number of times.
Thanks, Nathan