@@ -1241,6 +1241,7 @@ type TaskSeq =
1241
1241
///
1242
1242
/// <param name="source1">The first input task sequence.</param>
1243
1243
/// <param name="source2">The second input task sequence.</param>
1244
+ /// <returns>The result task sequence of tuples.</returns>
1244
1245
/// <exception cref="T:ArgumentNullException">Thrown when either of the two input task sequences is null.</exception>
1245
1246
static member zip : source1 : TaskSeq < 'T > -> source2 : TaskSeq < 'U > -> TaskSeq < 'T * 'U >
1246
1247
@@ -1275,3 +1276,27 @@ type TaskSeq =
1275
1276
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1276
1277
static member foldAsync :
1277
1278
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