Skips the first n elements of the stream.
n
final afterFirst5 = IntStream.range(1, 100) .skip(5);
IntStream skip(int n);