skip abstract method

GenericStream<T> skip(
  1. int n
)

Returns a stream consisting of the remaining elements of this stream after discarding the first n elements of the stream.

Example

final afterFirst5 = GenericStream.range(1, 100)
    .skip(5);

Implementation

GenericStream<T> skip(int n);