IntStream parallel()
returns a parallel IntStream.
parallel
has the following syntax.
IntStream parallel()
The following example shows how to use parallel
.
import java.util.stream.IntStream; public class Main { public static void main(String[] args) { IntStream i = IntStream.of(6,5,7,1, 2, 3, 3); i.parallel().sorted().forEach(System.out::println); } }
The code above generates the following result.