Is there a way to create an IntStream for a range of ints?
IntStream
Like if I wanted to stream values 1 to 1000, I could invoke some IntStream stat
Never mind, I don't know why I missed it in the API documentation after reading it several times...
IntStream.range(1,1000)