LongStream sequential() example
Description
LongStream sequential()
returns the sequential LongStream.
Syntax
sequential
has the following syntax.
LongStream sequential()
Example
The following example shows how to use sequential
.
import java.util.stream.LongStream;
/* w w w . ja va2 s .co m*/
public class Main {
public static void main(String[] args) {
LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);
b.sequential().forEach(System.out::println);
}
}
The code above generates the following result.