IntStream sequential() example
Description
IntStream sequential()
returns a sequential IntStream.
Syntax
sequential
has the following syntax.
IntStream sequential()
Example
The following example shows how to use sequential
.
import java.util.stream.IntStream;
/*w ww. j a v a 2 s . co m*/
public class Main {
public static void main(String[] args) {
IntStream i = IntStream.of(1,2,3,4,5,6,7);
IntStream o = i.sequential();
o.forEach(System.out::println);
}
}
The code above generates the following result.