FSharp.Control.AsyncSeq icon indicating copy to clipboard operation
FSharp.Control.AsyncSeq copied to clipboard

Asynchronous sequences for F#

Results 24 FSharp.Control.AsyncSeq issues
Sort by recently updated
recently updated
newest added

Hello! Regular `Seq` contains simple convenience functions `head` and `tail`. I implemented those for `AsyncSeq`, maybe they could be added? Thanks.

AsyncSeq.mergeAll is taking list, how about allow it to take an array so it takes what Async.Parallel returns without creating a list Or should it accept seq

Is there a plan to add an equivalent taskSeq CE to this library? Thanks

I read the sequence that's returned by this function, do I get to read the first element when all elements are finished on mapping, or I can start reading the...

I'd like to turn `Async` to `AsyncSeq` While this works ```FSharp asyncSeq { for item in items -> item } ``` `yield!` version does not: ```FSharp asyncSeq { yield! items...

### Description Bumped into this at work the other day, and thought this could be a nice addition to the library (unless it's already part of it under another name...

### Description With the event of TaskSeq coming to the masses, which used the NetStandard 2.1 `IAsyncEnumerable`, using both this lib and that one leads to issues because the same...

I implemented mapAsyncUnorderedParallel Can someone please help me to add it into the AsyncSeq library we are using

### Description When calling AsyncSeq.ofAsyncEnum the thread becomes deadlocked and the app grinds to a halt ### Please provide the steps required to reproduce the problem Following code called from...

``` AsyncSeq.mapAsyncParallel ``` returns a sequence with order preserved, however we often want to read the first thing that's available and throw away the rest I propose a generic version...