I want to get an array of data or errors using Future. After receiving, if at least one element of the array is without an error, I return the array. Otherwise I need to get the errors from the array.
I need to get an array of Result<Value, Error> from an array of Future<Value, Error> using a Swift Combine. How can i do this?
MergeMany can’t solve a problem because twhrow error
New contributor
Paul Sin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.