FSharp.Control.TaskSeq
FSharp.Control.TaskSeq copied to clipboard
A computation expression and module for seamless working with IAsyncEnumerable<'T> as if it is just another sequence
Results
32
FSharp.Control.TaskSeq issues
Sort by
recently updated
recently updated
newest added
Add `TaskSeq.distinctUntilChanged` and tests
Repo: https://github.com/mrakgr/taskseq_bug_report Code: ```fsharp module ICF_Main.Main open System open System.Threading.Channels open FSharp.Control module Db = let service () = let ch_in = Channel.CreateUnbounded() let loop_add_db = task { for events...