Skip to content

Commit e823eae

Browse files
committed
Don't implement all functions
1 parent 8dc69e5 commit e823eae

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ This is what has been implemented so far, is planned or skipped:
253253

254254
| Done | `Seq` | `TaskSeq` | Variants | Remarks |
255255
|------------------|--------------------|----------------------|---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
256-
| ❓ | `allPairs` | `allPairs` | | [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.") |
257256
| ✅ [#81][] | `append` | `append` | | |
258257
| ✅ [#81][] | | | `appendSeq` | |
259258
| ✅ [#81][] | | | `prependSeq` | |
@@ -267,7 +266,6 @@ This is what has been implemented so far, is planned or skipped:
267266
| ✅ [#258][] | `chunkBySize` | `chunkBySize` | | |
268267
| ✅ [#11][] | `collect` | `collect` | `collectAsync` | |
269268
| ✅ [#11][] | | `collectSeq` | `collectSeqAsync` | |
270-
| ✅ | `compareWith` | `compareWith` | `compareWithAsync` | |
271269
| ✅ [#69][] | `concat` | `concat` | | |
272270
| ✅ [#237][]| `concat` (list) | `concat` (list) | | |
273271
| ✅ [#237][]| `concat` (array) | `concat` (array) | | |
@@ -287,12 +285,8 @@ This is what has been implemented so far, is planned or skipped:
287285
| ✅ [#70][] | `exists` | `exists` | `existsAsync` | |
288286
| ✅ [#23][] | `filter` | `filter` | `filterAsync` | |
289287
| ✅ [#23][] | `find` | `find` | `findAsync` | |
290-
| 🚫 | `findBack` | | | [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.") |
291288
| ✅ [#68][] | `findIndex` | `findIndex` | `findIndexAsync` | |
292-
| 🚫 | `findIndexBack` | n/a | n/a | [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.") |
293289
| ✅ [#2][] | `fold` | `fold` | `foldAsync` | |
294-
| 🚫 | `foldBack` | | | [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.") |
295-
| 🚫 | `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.") |
296290
| ✅ [#240][]| `forall` | `forall` | `forallAsync` | |
297291
| ✅ [#307][] | `groupBy` | `groupBy` | `groupByAsync` | |
298292
| ✅ [#23][] | `head` | `head` | | |

0 commit comments

Comments
 (0)