We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0692200 commit c2f3632Copy full SHA for c2f3632
proposals/0304-structured-concurrency.md
@@ -1196,13 +1196,6 @@ extension TaskGroup: AsyncSequence {
1196
///
1197
/// print(await group.next())
1198
/// /// Prints "1" OR "2"
1199
- ///
1200
- /// ### Errors
1201
- /// If an operation added to the group throws, that error will be rethrown
1202
- /// by the next() call corresponding to that operation's completion.
1203
1204
- /// It is possible to directly rethrow such error out of a `withTaskGroup` body
1205
- /// function's body, causing all remaining tasks to be implicitly cancelled.
1206
mutating func next() async -> ChildTaskResult? { ... }
1207
1208
/// Wait for all of the child tasks to complete.
0 commit comments