Skip to content

Instantly share code, notes, and snippets.

@brennanMKE
Created November 7, 2024 21:26
Show Gist options
  • Save brennanMKE/8def26191741beee47ba598a69205d79 to your computer and use it in GitHub Desktop.
Save brennanMKE/8def26191741beee47ba598a69205d79 to your computer and use it in GitHub Desktop.
Useful extension for ThrowingTaskGroup
extension ThrowingTaskGroup {
func reduceAll() async throws -> [Element] {
try await reduce(into: []) { $0.append($1) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment