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>
654
656
/// <returns>The nth element of the task sequence.</returns>
655
657
/// <exceptioncref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
656
658
/// <exceptioncref="T:ArgumentException">Thrown when the sequence has insufficient length or <paramrefname="index" /> is negative.</exception>
@@ -1163,8 +1165,8 @@ type TaskSeq =
1163
1165
1164
1166
/// <summary>
1165
1167
/// Applies the function <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1166
-
/// argument of type <typerefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1167
-
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1168
+
/// argument of type <typerefname="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1169
+
/// then computes <code>f (... (f s i0)...) iN</code>.
1168
1170
/// If the accumulator function <paramrefname="folder" /> is asynchronous, consider using <seecref="TaskSeq.foldAsync" />.
1169
1171
/// </summary>
1170
1172
///
@@ -1177,8 +1179,8 @@ type TaskSeq =
1177
1179
1178
1180
/// <summary>
1179
1181
/// Applies the asynchronous function <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1180
-
/// argument of type <typerefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1181
-
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1182
+
/// argument of type <typerefname="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1183
+
/// then computes <code>f (... (f s i0)...) iN</code>.
1182
1184
/// If the accumulator function <paramrefname="folder" /> is synchronous, consider using <seecref="TaskSeq.fold" />.
0 commit comments