skip_ordered


Description:

public Seq<G> skip_ordered (int64 n)

Returns a seq which contains the remaining elements of this seq after discarding the first n elements.

This operation always respects encounter order.

This is a stateful intermediate operation.

This operation is quite expensive on parallel execution. Using skip instead or switching to sequential execution may improve performance.

Parameters:

n

the number of elements to skip

Returns:

the new seq