Avatar
↓今話してた Future 使って並列化するコードはこんな感じになるかと。 let a = Future { await foo() } let b = Future { await bar() } let sum = await a.get() + b.get()
👀 1