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
-[x] Publish package on Nuget, **DONE, PUBLISHED SINCE: 7 November 2022**. See https://www.nuget.org/packages/FSharp.Control.TaskSeq
@@ -341,7 +341,7 @@ This is what has been implemented so far, is planned or skipped:
341
341
|🚫|`reduceBack`|||[note #2](#note2"Because of the async nature of TaskSeq sequences, iterating from the back would be bad practice. Instead, materialize the sequence to a list or array and then apply the 'Back' iterators.")|
|❓|`rev`|||[note #1](#note1"These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.")|
346
346
|✅[#296][]|`scan`|`scan`|`scanAsync`||
347
347
|🚫|`scanBack`|||[note #2](#note2"Because of the async nature of TaskSeq sequences, iterating from the back would be bad practice. Instead, materialize the sequence to a list or array and then apply the 'Back' iterators.")|
@@ -384,7 +384,7 @@ This is what has been implemented so far, is planned or skipped:
///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" />
1537
1559
///then computes<paramref name="f (...(f s i0)...)iN" />.
1538
1560
///If the accumulator function <paramref name="folder" />is asynchronous,consider using <see cref="TaskSeq.foldAsync" />.
0 commit comments