Esempio n. 1
0
 /// <summary>Returns a specified number of contiguous elements from the start of the sequence.</summary>
 /// <returns>A <see cref="RandomAccessSequence{T}" /> that contains the specified number of elements from the start of the input sequence.</returns>
 /// <param name="count">The number of elements to return.</param>
 public RandomAccessSequence <T> Take(int count)
 {
     return(new RandomAccessSequence <T>(_ft.Take(count)));
 }