Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/FSharp.Control.AsyncSeq/AsyncSeq.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ module AsyncSeq =
/// completion of sub-sequences depends on completion of other sub-sequences.
val groupBy<'T, 'Key when 'Key : equality> : projection:('T -> 'Key) -> source:AsyncSeq<'T> -> AsyncSeq<'Key * AsyncSeq<'T>>

#if (NETSTANDARD2_1 || NETCOREAPP3_0)
#if (NETSTANDARD || NET)

/// Creates an asynchronous computation that asynchronously yields results from the provided .NET IAsyncEnumerable.
val ofAsyncEnum<'T> : source: Collections.Generic.IAsyncEnumerable<'T> -> AsyncSeq<'T>
Expand Down