@@ -1300,3 +1300,29 @@ type TaskSeq =
13001300 /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
13011301 /// <exception cref="T:ArgumentException">Thrown when index is below 0 or greater than source length.</exception>
13021302 static member insertManyAt : index : int -> values : TaskSeq < 'T > -> source : TaskSeq < 'T > -> TaskSeq < 'T >
1303+
1304+ /// <summary>
1305+ /// Return a new task sequence with the item at the given index removed.
1306+ /// </summary>
1307+ ///
1308+ /// <param name="index">The index where the item should be removed.</param>
1309+ /// <param name="source">The input task sequence.</param>
1310+ /// <returns>The result task sequence.</returns>
1311+ /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1312+ /// <exception cref="T:ArgumentException">Thrown when index is below 0 or greater than source length.</exception>
1313+ static member removeAt : index : int -> source : TaskSeq < 'T > -> TaskSeq < 'T >
1314+
1315+ /// <summary>
1316+ /// Return a new task sequence with the number of items starting at a given index removed.
1317+ /// If <paramref name="count" /> is negative or zero, no items are removed. If <paramref name="index" />
1318+ /// + <paramref name="count" /> is greater than source length, but <paramref name="index" /> is not, then
1319+ /// all items until end of sequence are removed.
1320+ /// </summary>
1321+ ///
1322+ /// <param name="index">The index where the items should be removed.</param>
1323+ /// <param name="count">The number of items to remove.</param>
1324+ /// <param name="source">The input task sequence.</param>
1325+ /// <returns>The result task sequence.</returns>
1326+ /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1327+ /// <exception cref="T:ArgumentException">Thrown when index is below 0 or greater than source length.</exception>
1328+ static member removeManyAt : index : int -> count : int -> source : TaskSeq < 'T > -> TaskSeq < 'T >
0 commit comments