Exemplo n.º 1
0
 /// <summary>Returns a stream that skips N elements of the input parallel stream and then yields the remaining elements of the stream.</summary>
 /// <param name="n">The number of items to skip.</param>
 /// <param name="stream">The input parallel stream.</param>
 /// <returns>The result parallel stream.</returns>
 public static ParStream <TSource> Skip <TSource>(this ParStream <TSource> stream, int n)
 {
     return(ParStream.skip(n, stream));
 }