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