Skip to content

Commit

Permalink
Update readme with the takeUntilXXX functions
Browse files Browse the repository at this point in the history
  • Loading branch information
abelbraaksma committed Oct 30, 2023
1 parent bfe1b89 commit cb6a852
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,9 @@ The following is the progress report:
| | `sumBy` | `sumBy` | `sumByAsync` | |
| ✅ [#76][] | `tail` | `tail` | | |
| | `take` | `take` | | |
| ✅ [#126][]| `takeUntil` | `takeUntil` | `takeUntilAsync` | |
| ✅ [#126][]| | | `takeUntilInclusive` | |
| ✅ [#126][]| | | `takeUntilInclusiveAsync`| |
| ✅ [#126][]| `takeWhile` | `takeWhile` | `takeWhileAsync` | |
| ✅ [#126][]| | | `takeWhileInclusive` | |
| ✅ [#126][]| | | `takeWhileInclusiveAsync`| |
Expand Down Expand Up @@ -526,6 +529,10 @@ module TaskSeq =
val prependSeq: source1: seq<'T> -> source2: taskSeq<'T> -> taskSeq<'T>
val singleton: source: 'T -> taskSeq<'T>
val tail: source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeUntil: predicate: ('T -> bool) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeUntilAsync: predicate: ('T -> #Task<bool>) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeUntilInclusive: predicate: ('T -> bool) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeUntilInclusiveAsync: predicate: ('T -> #Task<bool>) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeWhile: predicate: ('T -> bool) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeWhileAsync: predicate: ('T -> #Task<bool>) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
val takeWhileInclusive: predicate: ('T -> bool) -> source: taskSeq<'T> -> Task<taskSeq<'T>>
Expand Down

0 comments on commit cb6a852

Please sign in to comment.