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
|❓|`cache`|`cache`||[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.")|
263
263
|✅[#67][]|`cast`|`cast`|||
264
264
|✅[#67][]|||`box`||
@@ -274,9 +274,11 @@ This is what has been implemented so far, is planned or skipped:
@@ -295,7 +297,7 @@ This is what has been implemented so far, is planned or skipped:
295
297
|🚫|`foldBack2`|||[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.")|
|❓|`groupBy`|`groupBy`|`groupByAsync`|[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.")|
|🚫|`mapFoldBack`|||[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.")|
319
321
|✅[#2][]|`mapi`|`mapi`|`mapiAsync`||
320
322
||`mapi2`|`mapi2`|`mapi2Async`||
@@ -334,6 +336,7 @@ This is what has been implemented so far, is planned or skipped:
|🚫|`readOnly`|||[note #3](#note3"The motivation for 'readOnly' in 'Seq' is that a cast from a mutable array or list to a 'seq<_>' is valid and can be cast back, leading to a mutable sequence. Since 'TaskSeq' doesn't implement 'IEnumerable<_>', such casts are not possible.")|
@@ -355,8 +358,8 @@ This is what has been implemented so far, is planned or skipped:
355
358
|❓|`sortByDescending`|||[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.")|
356
359
|❓|`sortWith`|||[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.")|
0 commit comments