skip_ordered
Description:
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 |