skip


Description:

public Stream<T> skip (int n)

Returns a Stream with the first n elements skipped.

Example:

    var rest = stream.skip (2);

Parameters:

n

number of elements to skip.

Returns:

a new Stream without the first n elements.