@@ -1241,6 +1241,7 @@ type TaskSeq =
12411241 ///
12421242 /// <param name="source1">The first input task sequence.</param>
12431243 /// <param name="source2">The second input task sequence.</param>
1244+ /// <returns>The result task sequence of tuples.</returns>
12441245 /// <exception cref="T:ArgumentNullException">Thrown when either of the two input task sequences is null.</exception>
12451246 static member zip : source1 : TaskSeq < 'T > -> source2 : TaskSeq < 'U > -> TaskSeq < 'T * 'U >
12461247
@@ -1275,3 +1276,27 @@ type TaskSeq =
12751276 /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
12761277 static member foldAsync :
12771278 folder : ( 'State -> 'T -> #Task < 'State >) -> state : 'State -> source : TaskSeq < 'T > -> Task < 'State >
1279+
1280+ /// <summary>
1281+ /// Return a new task sequence with a new item inserted before the given index.
1282+ /// </summary>
1283+ ///
1284+ /// <param name="index">The index where the item should be inserted.</param>
1285+ /// <param name="value">The value to insert.</param>
1286+ /// <param name="source">The input task sequence.</param>
1287+ /// <returns>The result task sequence.</returns>
1288+ /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1289+ /// <exception cref="T:ArgumentException">Thrown when index is below 0 or greater than source length.</exception>
1290+ static member insertAt : index : int -> value : 'T -> source : TaskSeq < 'T > -> TaskSeq < 'T >
1291+
1292+ /// <summary>
1293+ /// Return a new task sequence with the new items inserted before the given index.
1294+ /// </summary>
1295+ ///
1296+ /// <param name="index">The index where the items should be inserted.</param>
1297+ /// <param name="value">The values to insert.</param>
1298+ /// <param name="source">The input task sequence.</param>
1299+ /// <returns>The result task sequence.</returns>
1300+ /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1301+ /// <exception cref="T:ArgumentException">Thrown when index is below 0 or greater than source length.</exception>
1302+ static member insertManyAt : index : int -> values : TaskSeq < 'T > -> source : TaskSeq < 'T > -> TaskSeq < 'T >
0 commit comments