We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f9869 commit 2aaa720Copy full SHA for 2aaa720
1 file changed
README.md
@@ -183,7 +183,7 @@ There are more differences:
183
| **Behavior with `yield`** | Zero allocations; no `Task` or even `ValueTask` created | Allocates an F# `Async` wrapped in a singleton `AsyncSeq` |
184
| **Conversion to other** | `TaskSeq.toAsyncSeq` | `AsyncSeq.toAsyncEnum` |
185
| **Conversion from other** | Implicit (`yield!`) or `TaskSeq.ofAsyncSeq` | `AsyncSeq.ofAsyncEnum` |
186
-| **Recursion in `yield!`** | No (requires F# support, upcoming) | Yes |
+| **Recursion in `yield!`** | **No** (requires F# support, upcoming) | Yes |
187
| **Based on F# concept of** | `task` | `async` |
188
| **`MoveNextAsync`** | `ValueTask<bool>` | `Async<'T option>` |
189
| **`Current` internals** | `ValueOption<'T>` | `Option<'T>` |
0 commit comments