Skip to content

Commit f1fe870

Browse files
committed
Update release-notes.txt for adding TaskSeq.takeWhileXXX and fix readme.md
1 parent bcfd342 commit f1fe870

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,8 @@ The following is the progress report:
279279
| ✅ [#90][] | `singleton` | `singleton` | | |
280280
| | `skip` | `skip` | | |
281281
| | `skipWhile` | `skipWhile` | `skipWhileAsync` | |
282+
| | | | `skipWhileInclusive` | |
283+
| | | | `skipWhileInclusiveAsync` | |
282284
| ❓ | `sort` | | | [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.") |
283285
| ❓ | `sortBy` | | | [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.") |
284286
| ❓ | `sortByAscending` | | | [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.") |
@@ -289,7 +291,9 @@ The following is the progress report:
289291
| | `sumBy` | `sumBy` | `sumByAsync` | |
290292
| ✅ [#76][] | `tail` | `tail` | | |
291293
| | `take` | `take` | | |
292-
| ✅ [#126][] | `takeWhile` | `takeWhile` | `takeWhileAsync`, `takeWhileInclusive`, `takeWhileInclusiveAsync` | |
294+
| ✅ [#126][]| `takeWhile` | `takeWhile` | `takeWhileAsync` | |
295+
| ✅ [#126][]| | | `takeWhileInclusive` | |
296+
| ✅ [#126][]| | | `takeWhileInclusiveAsync`| |
293297
| ✅ [#2][] | `toArray` | `toArray` | `toArrayAsync` | |
294298
| ✅ [#2][] | | `toIList` | `toIListAsync` | |
295299
| ✅ [#2][] | `toList` | `toList` | `toListAsync` | |

release-notes.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11

22
Release notes:
3+
0.4.x (unreleased)
4+
- adds TaskSeq.takeWhile, takeWhileAsync, takeWhileInclusive, takeWhileInclusiveAsync, #126 (by @bartelink)
35

46
0.3.0
57
- internal renames, improved doc comments, signature files for complex types, hide internal-only types, fixes #112.

0 commit comments

Comments
 (0)