You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="index">The index of the item to retrieve.</param>
730
732
/// <returns>The nth element of the task sequence.</returns>
731
733
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
732
734
/// <exception cref="T:ArgumentException">Thrown when the sequence has insufficient length or <paramref name="index" /> is negative.</exception>
@@ -1239,8 +1241,8 @@ type TaskSeq =
1239
1241
1240
1242
/// <summary>
1241
1243
/// Applies the function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1242
-
/// argument of type <typeref name="'State" /> through the computation. If the input function is <paramref name="f" /> and the elements are <paramref name="i0...iN" />
1243
-
/// then computes <paramref name="f (... (f s i0)...) iN" />.
1244
+
/// argument of type <typeref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1245
+
/// then computes <code>f (... (f s i0)...) iN</code>.
1244
1246
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
1245
1247
/// </summary>
1246
1248
///
@@ -1253,8 +1255,8 @@ type TaskSeq =
1253
1255
1254
1256
/// <summary>
1255
1257
/// Applies the asynchronous function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1256
-
/// argument of type <typeref name="'State" /> through the computation. If the input function is <paramref name="f" /> and the elements are <paramref name="i0...iN" />
1257
-
/// then computes <paramref name="f (... (f s i0)...) iN" />.
1258
+
/// argument of type <typeref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1259
+
/// then computes <code>f (... (f s i0)...) iN</code>.
1258
1260
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
0 commit comments