We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000f18b commit 4cd377bCopy full SHA for 4cd377b
1 file changed
src/FSharp.Control.AsyncSeq/AsyncSeq.fs
@@ -1414,6 +1414,7 @@ module AsyncSeq =
1414
if (buffer.Count > 0) then
1415
yield buffer.ToArray() }
1416
1417
+ #if !FABLE_COMPILER
1418
let toSortedSeq fn source =
1419
toArrayAsync source |> Async.map fn |> Async.RunSynchronously
1420
@@ -1428,6 +1429,7 @@ module AsyncSeq =
1428
1429
1430
let sortByDescending (projection:'T -> 'Key) (source:AsyncSeq<'T>) : array<'T> when 'Key : comparison =
1431
toSortedSeq (Array.sortByDescending projection) source
1432
+ #endif
1433
1434
#if !FABLE_COMPILER
1435
let bufferByCountAndTime (bufferSize:int) (timeoutMs:int) (source:AsyncSeq<'T>) : AsyncSeq<'T[]> =
0 commit comments