List of usage examples for java.util.stream IntStream skip
IntStream skip(long n);
Source Link
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 4); i.skip(3).forEach(System.out::println); }