Skip to content

Commit 000f18b

Browse files
authored
Update AsyncSeq.fsi
1 parent 5977d7d commit 000f18b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/FSharp.Control.AsyncSeq/AsyncSeq.fsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)