Last Updated : 06 Dec, 2018
IntStream rangeClosed(int startInclusive, int endInclusive)returns an IntStream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1.
Syntax :static IntStream rangeClosed(int startInclusive, int endInclusive)Parameters :
A sequential IntStream for the range of int elements.
Example : Java
// Implementation of IntStream rangeClosed
// (int startInclusive, int endInclusive)
import java.util.*;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream
IntStream stream = IntStream.rangeClosed(-4, 3);
// Displaying the elements in range
// including the lower and upper bound
stream.forEach(System.out::println);
}
}
Output:
-4 -3 -2 -1 0 1 2 3Note :
IntStream rangeClosed(int startInclusive, int endInclusive) basically works like a for loop. An equivalent sequence of increasing values can be produced sequentially as :
for (int i = startInclusive; i <= endInclusive ; i++) { ... ... ... }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4