@@ -726,18 +726,20 @@ type TaskSeq =
726
726
static member filterAsync : predicate : ( 'T -> #Task < bool >) -> source : TaskSeq < 'T > -> TaskSeq < 'T >
727
727
728
728
/// <summary>
729
- /// Returns a task sequence that, when iterated, skips <paramref name="count" /> elements of the
730
- /// underlying sequence, and then returns the remainder of the elements . Raises an exception if there are not enough
731
- /// elements in the sequence . See <see cref="drop" /> for a version that does not raise an exception.
729
+ /// Returns a task sequence that, when iterated, skips <paramref name="count" /> elements of the underlying
730
+ /// sequence, and then yields the remainder. Raises an exception if there are not <paramref name="count" />
731
+ /// items . See <see cref="drop" /> for a version that does not raise an exception.
732
732
/// See also <see cref="take" /> for the inverse of this operation.
733
733
/// </summary>
734
734
///
735
735
/// <param name="count">The number of items to skip.</param>
736
736
/// <param name="source">The input task sequence.</param>
737
737
/// <returns>The resulting task sequence.</returns>
738
738
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
739
- /// <exception cref="T:ArgumentException">Thrown when <paramref name="count" /> is less than zero.</exception>
740
- /// <exception cref="T:InvalidOperationException">Thrown when count exceeds the number of elements in the sequence.</exception>
739
+ /// <exception cref="T:ArgumentException">
740
+ /// Thrown when <paramref name="count" /> is less than zero or when
741
+ /// it exceeds the number of elements in the sequence.
742
+ /// </exception>
741
743
static member skip : count : int -> source : TaskSeq < 'T > -> TaskSeq < 'T >
742
744
743
745
@@ -748,7 +750,7 @@ type TaskSeq =
748
750
/// are not enough elements. See also <see cref="truncate" /> for the inverse of this operation.
749
751
/// </summary>
750
752
///
751
- /// <param name="count">The number of items to drop.</param>
753
+ /// <param name="count">The maximum number of items to drop.</param>
752
754
/// <param name="source">The input task sequence.</param>
753
755
/// <returns>The resulting task sequence.</returns>
754
756
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -766,8 +768,10 @@ type TaskSeq =
766
768
/// <param name="source">The input task sequence.</param>
767
769
/// <returns>The resulting task sequence.</returns>
768
770
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
769
- /// <exception cref="T:ArgumentException">Thrown when <paramref name="count" /> is less than zero.</exception>
770
- /// <exception cref="T:InvalidOperationException">Thrown when count exceeds the number of elements in the sequence.</exception>
771
+ /// <exception cref="T:ArgumentException">
772
+ /// Thrown when <paramref name="count" /> is less than zero or when
773
+ /// it exceeds the number of elements in the sequence.
774
+ /// </exception>
771
775
static member take : count : int -> source : TaskSeq < 'T > -> TaskSeq < 'T >
772
776
773
777
/// <summary>
0 commit comments