We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1169f7b commit f1afb7fCopy full SHA for f1afb7f
1 file changed
src/FSharp.Control.AsyncSeq/AsyncSeq.fs
@@ -6,7 +6,6 @@ namespace FSharp.Control
6
7
open System
8
open System.Diagnostics
9
-open System.IO
10
open System.Collections.Generic
11
open System.Threading
12
open System.Threading.Tasks
@@ -1660,7 +1659,7 @@ module AsyncSeq =
1660
1659
1661
1662
let groupByAsync (p:'a -> Async<'k>) (s:AsyncSeq<'a>) : AsyncSeq<'k * AsyncSeq<'a>> = asyncSeq {
1663
- let groups = Collections.Generic.Dictionary<'k, AsyncSeqSrc< 'a>>()
+ let groups = Dictionary<'k, AsyncSeqSrc< 'a>>()
1664
let close group =
1665
AsyncSeqSrcImpl.close group
1666
let closeGroups () =
0 commit comments