I have an array of Thing
objects that I want to convert to ConvertedThing
objects, using an asynchronous function that returns Observable<ConvertedThing>
.
I'd like to create an Observable<[ConvertedThing]>
that emits one value when all the conversions have completed.
How can this be accomplished? Any help much appreciated!