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
/// <paramname="index">The index of the item to retrieve.</param>
730
732
/// <returns>The nth element of the task sequence.</returns>
731
733
/// <exceptioncref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
732
734
/// <exceptioncref="T:ArgumentException">Thrown when the sequence has insufficient length or <paramrefname="index" /> is negative.</exception>
@@ -1239,8 +1241,8 @@ type TaskSeq =
1239
1241
1240
1242
/// <summary>
1241
1243
/// Applies the function <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1242
-
/// argument of type <typerefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1243
-
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1244
+
/// argument of type <typerefname="'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 <paramrefname="folder" /> is asynchronous, consider using <seecref="TaskSeq.foldAsync" />.
1245
1247
/// </summary>
1246
1248
///
@@ -1253,8 +1255,8 @@ type TaskSeq =
1253
1255
1254
1256
/// <summary>
1255
1257
/// Applies the asynchronous function <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1256
-
/// argument of type <typerefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1257
-
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1258
+
/// argument of type <typerefname="'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 <paramrefname="folder" /> is synchronous, consider using <seecref="TaskSeq.fold" />.
0 commit comments