Skip to content

Commit 02d7c3d

Browse files
committed
fix docs
1 parent 5e71b51 commit 02d7c3d

2 files changed

Lines changed: 0 additions & 155 deletions

File tree

docs/ComparisonWithObservable.fsx

Lines changed: 0 additions & 151 deletions
This file was deleted.

docs/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,3 @@ Both libraries implement that .NET standard `IAsyncEnumerable<'T>` interface, so
3535
### seq<'T>
3636

3737
The central difference between `seq<'T>` and `AsyncSeq<'T>` can be illustrated by introducing the notion of time. Suppose that generating subsequent elements of a sequence requires an IO-bound operation. Invoking long running IO-bound operations from within a `seq<'T>` will _block_ the thread which calls `MoveNext` on the corresponding `IEnumerator`. An `AsyncSeq` on the other hand can use facilities provided by the F# `Async` type to make more efficient use of system resources.
38-
39-
### IObservable<'T>
40-
41-
See [Comparison with IObservable](ComparisonWithObservable.fsx).

0 commit comments

Comments
 (0)