41

Is there a way to create an IntStream for a range of ints?

Like if I wanted to stream values 1 to 1000, I could invoke some IntStream static factory to stream that range?

IntStream.forRange(1, 1000).forEach(//do something...
Tagir Valeev
  • 97,161
  • 19
  • 222
  • 334
tmn
  • 11,121
  • 15
  • 56
  • 112

1 Answers1

76

Never mind, I don't know why I missed it in the API documentation after reading it several times...

IntStream.range(1,1000)
tmn
  • 11,121
  • 15
  • 56
  • 112