What's the Combine's equivalent to concatMap? I want to keep the order of downstream items to be the same as the original upstream items
[1,2,3].publisher.flatMap { self.getItem($0) } // This does not guarantee [Item1, Item2, Item3]
What's the Combine's equivalent to concatMap? I want to keep the order of downstream items to be the same as the original upstream items
[1,2,3].publisher.flatMap { self.getItem($0) } // This does not guarantee [Item1, Item2, Item3]