``` extension AsyncSequence where Element == Void { func waitForAll() async rethrows { for try await _ in self { } } } ```