We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b147d91 commit 5bd8c11Copy full SHA for 5bd8c11
1 file changed
docs/content/library/AsyncSeq.fsx
@@ -3,7 +3,7 @@
3
# F# Async: FSharp.Control.AsyncSeq
4
5
An AsyncSeq is a sequence in which individual elements are retrieved using an `Async` computation.
6
-It is similar to `seq<'a>` in that subsequent elements are pulled asynchronously. Structurally it is
+It is similar to `seq<'a>` in that subsequent elements are pulled on-demand. Structurally it is
7
similar to `list<'a>` with the difference being that each head and tail node or empty node is wrapped
8
in `Async`. `AsyncSeq` also bears similarity to `IObservable<'a>` with the former being based on an "asynchronous pull" and the
9
latter based on a "synchronous push". Analogs for most operations defined for `Seq`, `List` and `IObservable` are also defined for
0 commit comments