Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion proposals/nnnn-structured-concurrency.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ We can then re-implement `makeDinner` with only a task group:

```swift
func makeDinnerTaskGroup() async throws -> Meal {
withTaskGroup(resultType: DinnerChildTask.self) { group in
return try await Task.withGroup(resultType: DinnerChild.self) { group in
await group.add {
DinnerChild.chopVegetables(await chopVegetables())
}
Expand All @@ -260,6 +260,7 @@ func makeDinnerTaskGroup() async throws -> Meal {
var meat: Meat? = nil
var oven: Oven? = nil
var dish: Dish? = nil

while let child = try await group.next() {
switch child {
case .chopVegetables(let newVeggies):
Expand Down