LongStream rangeClosed(long startInclusive, long endInclusive) returns an LongStream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1.
Syntax :
static LongStream rangeClosed(long startInclusive, long endInclusive)
Parameters :
- LongStream : A sequence of primitive long-valued elements.
- startInclusive : The inclusive initial value.
- endInclusive : The inclusive upper bound.
Return Value : A sequential LongStream for the range of long elements.
Example :
import java.util.*;
import java.util.stream.LongStream;
class GFG {
public static void main(String[] args)
{
LongStream stream = LongStream.rangeClosed(-4L, 3L);
stream.forEach(System.out::println);
}
}
|
Output:
-4
-3
-2
-1
0
1
2
3
Note : LongStream rangeClosed(long startInclusive, long 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++)
{
...
...
...
}