Avatar
並列に実行してから後で待ちたいとかですよね?↓みたいな。 let a = Future { await foo() } let b = Future { await bar() } let sum = await a.get() + b.get()