I propose we extend the computation expression syntax with a new keyword, for!, that simplifies processing of IAsyncEnumerable<'T>.
task {
for! item in agent.RunStreamingAsync("What is the weather today?") do
printf "%O" item
}
Which should be desugared to this (similar to C#)
task {
use e = agent.RunStreamingAsync("What is the weather today?").GetAsyncEnumerator()
while! e.MoveNextAsync() do
printf "%O" e.Current
}
The existing way of approaching this problem in F# is using the desugared version
or with FSharp.Control.TaskSeq package:
open FSharp.Control
task {
for item in agent.RunStreamingAsync("What is the weather today?") do
printf "%O" item
}
Former option is rather verbose and latter is confusing, since nothing tells user that there is "await" on each iteration.
Fable
This will also help Fable to implement support for AsyncEnumerable analogues:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of
https://docs.python.org/3/reference/compound_stmts.html#async-for
promise{
for! value in generate() do
printfn "%O" value
}
// javacript
for await (const value of generate()) {
console.log(value);
}
# python
async for value in generate():
print(value )
Pros and Cons
The advantage of making this adjustment to F# is improved user experience when working with IAsyncEnumerable<>, which is already widespread
The disadvantages of making this adjustment to F# is that it's unclear whether new method will be applicable to other cases except IAsyncEnumerable<>
Extra information
Estimated cost (XS, S, M, L, XL, XXL): M
Related suggestions: (put links to related suggestions here)
While-bang
If-bang
AsyncSeq builder
Affidavit (please submit!)
Please tick these items by placing a cross in the box:
Please tick all that apply:
For Readers
If you would like to see this issue implemented, please click the 👍 emoji on this issue. These counts are used to generally order the suggestions by engagement.
I propose we extend the computation expression syntax with a new keyword,
for!, that simplifies processing ofIAsyncEnumerable<'T>.Which should be desugared to this (similar to C#)
The existing way of approaching this problem in F# is using the desugared version
or with
FSharp.Control.TaskSeqpackage:Former option is rather verbose and latter is confusing, since nothing tells user that there is "await" on each iteration.
Fable
This will also help Fable to implement support for AsyncEnumerable analogues:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of
https://docs.python.org/3/reference/compound_stmts.html#async-for
Pros and Cons
The advantage of making this adjustment to F# is improved user experience when working with
IAsyncEnumerable<>, which is already widespreadThe disadvantages of making this adjustment to F# is that it's unclear whether new method will be applicable to other cases except
IAsyncEnumerable<>Extra information
Estimated cost (XS, S, M, L, XL, XXL): M
Related suggestions: (put links to related suggestions here)
While-bang
If-bang
AsyncSeq builder
Affidavit (please submit!)
Please tick these items by placing a cross in the box:
Please tick all that apply:
For Readers
If you would like to see this issue implemented, please click the 👍 emoji on this issue. These counts are used to generally order the suggestions by engagement.