File tree Expand file tree Collapse file tree
src/FSharp.Control.AsyncSeq Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -437,6 +437,7 @@ module AsyncSeq =
437437 /// Flattens an AsyncSeq of asynchronous sequences.
438438 val concat : AsyncSeq < AsyncSeq < 'T >> -> AsyncSeq < 'T >
439439
440+ #if ! FABLE_COMPILER
440441 /// Yields a sequence ordered by keys.
441442 /// This function returns a sequence that digests the whole initial sequence as soon as
442443 /// that sequence is iterated. As a result this function should not be used with
@@ -460,7 +461,8 @@ module AsyncSeq =
460461 /// that sequence is iterated. As a result this function should not be used with
461462 /// large or infinite sequences.
462463 val sortByDescending : projection :( 'T -> 'Key ) -> source : AsyncSeq < 'T > -> array < 'T > when 'Key : comparison
463-
464+ #endif
465+
464466 /// Interleaves two async sequences of the same type into a resulting sequence. The provided
465467 /// sequences are consumed in lock - step.
466468 val interleave : source1 : AsyncSeq < 'T > -> source2 : AsyncSeq < 'T > -> AsyncSeq < 'T >
You can’t perform that action at this time.
0 commit comments