List of usage examples for java.util.stream IntStream forEachOrdered
void forEachOrdered(IntConsumer action);
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(1, 2, 3, 4); i.forEachOrdered(System.out::println); }