Esempio n. 1
0
 /// <summary>Bypasses a specified number of elements in a sequence and then returns the remaining elements.</summary>
 /// <returns>A <see cref="RandomAccessSequence{T}" /> that contains the elements that occur after the specified index in the input sequence.</returns>
 /// <param name="count">The number of elements to return.</param>
 public RandomAccessSequence <T> Skip(int count)
 {
     return(new RandomAccessSequence <T>(_ft.Skip(count)));
 }