Add the equivalent of concatMap#20
Add the equivalent of concatMap#20denizcoskun wants to merge 1 commit intoCombineCommunity:masterfrom
Conversation
|
I'm not sure that's entirely true, there was a huge discussion about this in one of the slack channels and some folks mentioned it has some differences. I'll try to find that info. |
|
@freak4pc thanks, really appreciate that! |
here's where I got the information: https://forums.swift.org/t/combine-what-are-those-multicast-functions-for/26677/26 |
|
I couldn't find anything against this claim, if you rebase this I'll merge it . Thanks! |
998ba49 to
6aef4c5
Compare
@freak4pc thanks, it is rebased now. |
|
Hey @denizcoskun - There was an interesting research and discussion in CombineExt which seems to indicate this variation isn't quite similar to concatMap in all forms. What do you think? |
concatMapis a quite useful operator in the Rx world and it was a bit disappointing that Combine didn't have a built-in equivalent of it until I found thatflatMapbehaves like concatMap when used correctly.