IntStream range() in Java
IntStream range(int startInclusive, int endExclusive) returns a sequential ordered IntStream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1.
Syntax :
static IntStream range(int startInclusive, int endExclusive)
Parameters :
Return Value : A sequential IntStream for the range of int elements.
Example :
// Implementation of IntStream range // (int startInclusive, int endExclusive) import java.util.*; import java.util.stream.IntStream; class GFG { // Driver code public static void main(String[] args) { // Creating an IntStream IntStream stream = IntStream.range( 6 , 10 ); // Displaying the elements in range // including the lower bound but // excluding the upper bound stream.forEach(System.out::println); } } |
6 7 8 9
Note : IntStream range(int startInclusive, int endExclusive) basically works like a for loop. An equivalent sequence of increasing values can be produced sequentially as :
for (int i = startInclusive; i < endExclusive ; i++) { ... ... ... }
Recommended Posts:
- IntStream sum() in Java
- IntStream of() in Java
- IntStream concat() in Java
- IntStream mapToObj() in Java
- IntStream mapToLong() in Java
- IntStream asLongStream() in Java
- IntStream rangeClosed() in Java
- IntStream findFirst() in Java
- IntStream iterator() in Java
- IntStream skip() in Java
- IntStream limit() in Java
- IntStream sorted() in Java
- IntStream max() in Java with examples
- IntStream min() in Java with Examples
- IntStream parallel() in Java
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.